nixpkgs/pkgs/development/python-modules/argon2_cffi/default.nix

34 lines
641 B
Nix
Raw Normal View History

{ cffi
2017-12-04 14:34:20 +01:00
, six
, enum34
2017-12-04 14:34:20 +01:00
, hypothesis
, pytest
, wheel
, buildPythonPackage
, fetchPypi
, isPy3k
, lib
2017-12-04 14:34:20 +01:00
}:
buildPythonPackage rec {
pname = "argon2_cffi";
2019-12-19 20:31:04 +01:00
version = "19.2.0";
2017-12-04 14:34:20 +01:00
src = fetchPypi {
inherit pname version;
2019-12-19 20:31:04 +01:00
sha256 = "ffaa623eea77b497ffbdd1a51e941b33d3bf552c60f14dbee274c4070677bda3";
2017-12-04 14:34:20 +01:00
};
propagatedBuildInputs = [ cffi six ] ++ lib.optional (!isPy3k) enum34;
2017-12-04 14:34:20 +01:00
checkInputs = [ hypothesis pytest wheel ];
checkPhase = ''
pytest tests
'';
meta = with lib; {
2017-12-04 14:34:20 +01:00
description = "Secure Password Hashes for Python";
homepage = https://argon2-cffi.readthedocs.io/;
license = licenses.mit;
2017-12-04 14:34:20 +01:00
};
}