23 lines
516 B
Nix
23 lines
516 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, coverage, nose, pbkdf2 }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cryptacular";
|
|
version = "1.4.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "18fl7phl6r9xiwz8f1jpkahkv21wimmiq72gmrqncccv7z806gr7";
|
|
};
|
|
|
|
buildInputs = [ coverage nose ];
|
|
propagatedBuildInputs = [ pbkdf2 ];
|
|
|
|
# TODO: tests fail: TypeError: object of type 'NoneType' has no len()
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
maintainers = with maintainers; [ domenkozar ];
|
|
};
|
|
}
|