2018-07-20 17:44:44 -07:00
|
|
|
{ buildPythonPackage
|
2017-09-06 09:04:56 -07:00
|
|
|
, fetchPypi
|
|
|
|
, nose
|
|
|
|
, bcrypt
|
2017-12-04 06:09:21 -08:00
|
|
|
, argon2_cffi
|
2017-09-06 09:04:56 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "passlib";
|
2020-10-25 02:06:54 -07:00
|
|
|
version = "1.7.4";
|
2017-09-06 09:04:56 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-25 02:06:54 -07:00
|
|
|
sha256 = "defd50f72b65c5402ab2c573830a6978e5f202ad0d984793c8dde2c4152ebe04";
|
2017-09-06 09:04:56 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ nose ];
|
2017-12-04 06:09:21 -08:00
|
|
|
propagatedBuildInputs = [ bcrypt argon2_cffi ];
|
2017-09-06 09:04:56 -07:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A password hashing library for Python";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://code.google.com/p/passlib/";
|
2017-09-06 09:04:56 -07:00
|
|
|
};
|
2017-12-04 06:09:21 -08:00
|
|
|
}
|