3
0
Fork 0
forked from mirrors/nixpkgs

safe: init at 0.4

This commit is contained in:
Peter Marheine 2017-01-04 08:28:51 +00:00 committed by Michael Raskin
parent 4bd86e5c51
commit 7c25047677

View file

@ -9689,6 +9689,23 @@ in {
};
};
safe = buildPythonPackage rec {
version = "0.4";
name = "Safe-${version}";
src = pkgs.fetchurl {
url = "mirror://pypi/S/Safe/${name}.tar.gz";
sha256 = "a2fdac9fe8a9dcf02b438201d6ce0b7be78f85dc6492d03edfb89be2adf489de";
};
buildInputs = with self; [ nose ];
meta = {
homepage = "https://github.com/lepture/safe";
license = licenses.bsd3;
description = "Check password strength";
};
};
samplerate = buildPythonPackage rec {
name = "scikits.samplerate-${version}";
version = "0.3.3";