2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, isPyPy, fetchPypi, pythonOlder
|
2017-02-01 05:46:19 +00:00
|
|
|
, cffi, pycparser, mock, pytest, py, six }:
|
2017-01-13 15:19:46 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2020-08-16 18:30:53 +01:00
|
|
|
version = "3.2.0";
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "bcrypt";
|
2020-08-17 03:11:30 +01:00
|
|
|
disabled = pythonOlder "3.6";
|
2017-01-13 15:19:46 +00:00
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 18:30:53 +01:00
|
|
|
sha256 = "5b93c1726e50a93a033c36e5ca7fdcd29a5c7395af50a6892f5d9e7c6cfbfb29";
|
2017-01-13 15:19:46 +00:00
|
|
|
};
|
2021-01-24 00:29:22 +00:00
|
|
|
|
2017-01-13 15:19:46 +00:00
|
|
|
buildInputs = [ pycparser mock pytest py ];
|
|
|
|
|
2021-01-24 00:29:22 +00:00
|
|
|
propagatedBuildInputs = [ six ] ++ lib.optional (!isPyPy) cffi;
|
|
|
|
|
|
|
|
meta = with lib; {
|
2017-01-13 15:19:46 +00:00
|
|
|
maintainers = with maintainers; [ domenkozar ];
|
|
|
|
description = "Modern password hashing for your software and your servers";
|
|
|
|
license = licenses.asl20;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/pyca/bcrypt/";
|
2017-01-13 15:19:46 +00:00
|
|
|
};
|
|
|
|
}
|