summary refs log tree commit diff
path: root/pkgs/development/python-modules/safe/default.nix
blob: d167760c3e0effb6fd9eb5e7ba7179ffe67b7bdd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, nose
}:

buildPythonPackage rec {
  version = "0.4";
  pname = "Safe";

  src = fetchPypi {
    inherit pname version;
    sha256 = "a2fdac9fe8a9dcf02b438201d6ce0b7be78f85dc6492d03edfb89be2adf489de";
  };

  buildInputs = [ nose ];

  meta = with lib; {
    homepage = "https://github.com/lepture/safe";
    license = licenses.bsd3;
    description = "Check password strength";
  };

}