1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 nose,
6}:
7
8buildPythonPackage rec {
9 version = "0.4";
10 pname = "Safe";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "a2fdac9fe8a9dcf02b438201d6ce0b7be78f85dc6492d03edfb89be2adf489de";
15 };
16
17 buildInputs = [ nose ];
18
19 meta = with lib; {
20 homepage = "https://github.com/lepture/safe";
21 license = licenses.bsd3;
22 description = "Check password strength";
23 };
24}