pythonPackages.pbkdf2: Move to own file
This commit is contained in:
committed by
Frederik Rietdijk
parent
9a42fdef90
commit
e72e47c666
18
pkgs/development/python-modules/pbkdf2/default.nix
Normal file
18
pkgs/development/python-modules/pbkdf2/default.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pbkdf2";
|
||||
version = "1.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0yb99rl2mbsaamj571s1mf6vgniqh23v98k4632150hjkwv9fqxc";
|
||||
};
|
||||
|
||||
# ImportError: No module named test
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
maintainers = with maintainers; [ domenkozar ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user