diff --git a/pkgs/development/python-modules/argon2-cffi/default.nix b/pkgs/development/python-modules/argon2-cffi/default.nix index 9d59b5fbad65..d3c1d28ae7e5 100644 --- a/pkgs/development/python-modules/argon2-cffi/default.nix +++ b/pkgs/development/python-modules/argon2-cffi/default.nix @@ -1,12 +1,8 @@ -{ six -, enum34 -, hypothesis +{ hypothesis , pytest -, wheel , buildPythonPackage , fetchPypi , flit-core -, isPy3k , lib , stdenv , argon2-cffi-bindings @@ -26,10 +22,9 @@ buildPythonPackage rec { flit-core ]; - propagatedBuildInputs = [ six argon2-cffi-bindings ] - ++ lib.optional (!isPy3k) enum34; + propagatedBuildInputs = [ argon2-cffi-bindings ]; - nativeCheckInputs = [ hypothesis pytest wheel ]; + nativeCheckInputs = [ hypothesis pytest ]; checkPhase = '' pytest tests '';