pybcrypt: remove old and insecure package

pybcrypt has had open vulnerabilities for years
and is unlikely to ever be updated;
there are no users in nixpkgs.
Other alternatives such as the `bcrypt` python module are available.
This commit is contained in:
Aneesh Agrawal 2018-11-29 12:43:38 -05:00
parent 66488adce8
commit a345852ca5
2 changed files with 0 additions and 23 deletions

View file

@ -1,21 +0,0 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "pybcrypt";
version = "0.4";
src = fetchPypi {
inherit pname version;
sha256 = "5fa13bce551468350d66c4883694850570f3da28d6866bb638ba44fe5eabda78";
};
meta = with stdenv.lib; {
description = "bcrypt password hashing and key derivation";
homepage = https://code.google.com/p/py-bcrypt2;
license = licenses.bsd0;
};
}

View file

@ -3740,8 +3740,6 @@ in {
pyblock = callPackage ../development/python-modules/pyblock { };
pybcrypt = callPackage ../development/python-modules/pybcrypt { };
pyblosxom = callPackage ../development/python-modules/pyblosxom { };
pycapnp = callPackage ../development/python-modules/pycapnp { };