mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #59137 from aneeshusa/remove-pybcrypt
pybcrypt: remove old and insecure package
This commit is contained in:
commit
c7eb9c1123
2 changed files with 0 additions and 23 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue