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