Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / safe / default.nix
blob6a4515b90f83ced9424d2efedf5c83b0b440e135
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , nose
5 }:
7 buildPythonPackage rec {
8   version = "0.4";
9   pname = "Safe";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "a2fdac9fe8a9dcf02b438201d6ce0b7be78f85dc6492d03edfb89be2adf489de";
14   };
16   buildInputs = [ nose ];
18   meta = with lib; {
19     homepage = "https://github.com/lepture/safe";
20     license = licenses.bsd3;
21     description = "Check password strength";
22   };