pythonPackages.pbkdf2: Move to own file

This commit is contained in:
Elis Hirwing
2018-03-31 21:03:11 +02:00
committed by Frederik Rietdijk
parent 9a42fdef90
commit e72e47c666
2 changed files with 19 additions and 15 deletions

View 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 ];
};
}