1 { lib, buildPythonPackage, fetchPypi, isPy27, pythonAtLeast
2 , coverage, nose, pbkdf2 }:
4 buildPythonPackage rec {
10 sha256 = "fb4d48716e88e4d050255ff0f065f6d437caa358ceef16ba5840c95cece224f9";
13 buildInputs = [ coverage nose ];
14 propagatedBuildInputs = [ pbkdf2 ];
16 # TODO: tests fail: TypeError: object of type 'NoneType' has no len()
19 # Python >=2.7.15, >=3.6.5 are incompatible:
20 # https://bitbucket.org/dholth/cryptacular/issues/11
21 disabled = isPy27 || pythonAtLeast "3.6";
24 maintainers = with maintainers; [ domenkozar ];