pythonPackages.zxcvbn-python: drop

"zxcvbn-python" was deprecated, and renamed to "zxcvbn".
See: https://github.com/dwolfhub/zxcvbn-python/pull/30/
This commit is contained in:
Mario Rodas 2019-05-30 07:45:00 -05:00
parent 1260b05279
commit ecfe4b40e2
No known key found for this signature in database
GPG key ID: 4C4BEFD7B18DC5E8
2 changed files with 0 additions and 26 deletions

View file

@ -1,24 +0,0 @@
{ lib, buildPythonPackage, fetchFromGitHub
, pytest_3 }:
buildPythonPackage rec {
pname = "zxcvbn-python";
version = "4.4.27";
src = fetchFromGitHub {
owner = "dwolfhub";
repo = pname;
rev = "v${version}";
sha256 = "0w0sx9ssjks8da973cdv5xi87yjsf038jqxmzj2y26xvpyjsg2v2";
};
checkInputs = [
pytest_3
];
meta = {
description = "Python implementation of Dropbox's realistic password strength estimator, zxcvbn";
homepage = https://github.com/dwolfhub/zxcvbn-python;
license = with lib.licenses; [ mit ];
};
}

View file

@ -5468,8 +5468,6 @@ in {
inherit (pkgs) zstd pkgconfig;
};
zxcvbn-python = callPackage ../development/python-modules/zxcvbn-python { };
incremental = callPackage ../development/python-modules/incremental { };
treq = callPackage ../development/python-modules/treq { };