depot/third_party/nixpkgs/pkgs/development/python-modules/safe/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

24 lines
427 B
Nix

{ lib
, 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";
};
}