python.pkgs.argon2_cffi: add enum34 dependency

This commit is contained in:
Robert Schütz 2019-03-02 10:47:45 +01:00
parent 80b6892362
commit d9b1bfa5bf

View File

@ -1,30 +1,33 @@
{ cffi { cffi
, six , six
, enum34
, hypothesis , hypothesis
, pytest , pytest
, wheel , wheel
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, isPy3k
, lib
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "argon2_cffi"; pname = "argon2_cffi";
version = "19.1.0"; version = "19.1.0";
name = "${pname}-${version}";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "81548a27b919861040cb928a350733f4f9455dd67c7d1ba92eb5960a1d7f8b26"; sha256 = "81548a27b919861040cb928a350733f4f9455dd67c7d1ba92eb5960a1d7f8b26";
}; };
propagatedBuildInputs = [ cffi six ]; propagatedBuildInputs = [ cffi six ] ++ lib.optional (!isPy3k) enum34;
checkInputs = [ hypothesis pytest wheel ]; checkInputs = [ hypothesis pytest wheel ];
checkPhase = '' checkPhase = ''
pytest tests pytest tests
''; '';
meta = { meta = with lib; {
description = "Secure Password Hashes for Python"; description = "Secure Password Hashes for Python";
homepage = https://argon2-cffi.readthedocs.io/; homepage = https://argon2-cffi.readthedocs.io/;
license = licenses.mit;
}; };
} }