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

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

@ -1832,21 +1832,7 @@ in {
detox = callPackage ../development/python-modules/detox { };
pbkdf2 = buildPythonPackage rec {
name = "pbkdf2-1.3";
src = pkgs.fetchurl {
url = "mirror://pypi/p/pbkdf2/${name}.tar.gz";
sha256 = "ac6397369f128212c43064a2b4878038dab78dab41875364554aaf2a684e6979";
};
# ImportError: No module named test
doCheck = false;
meta = {
maintainers = with maintainers; [ domenkozar ];
};
};
pbkdf2 = callPackage ../development/python-modules/pbkdf2 { };
bcrypt = callPackage ../development/python-modules/bcrypt { };