mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
25 lines
479 B
Nix
25 lines
479 B
Nix
{ buildPythonPackage
|
|
, fetchPypi
|
|
, nose
|
|
, bcrypt
|
|
, argon2_cffi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "passlib";
|
|
version = "1.7.4";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "defd50f72b65c5402ab2c573830a6978e5f202ad0d984793c8dde2c4152ebe04";
|
|
};
|
|
|
|
checkInputs = [ nose ];
|
|
propagatedBuildInputs = [ bcrypt argon2_cffi ];
|
|
|
|
meta = {
|
|
description = "A password hashing library for Python";
|
|
homepage = "https://code.google.com/p/passlib/";
|
|
};
|
|
}
|