nixpkgs/pkgs/development/python-modules/flask-bcrypt/default.nix
2020-04-10 17:54:53 +01:00

36 lines
648 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, flask
, bcrypt
, python
}:
buildPythonPackage rec {
pname = "flask-bcrypt";
version = "0.7.1";
src = fetchFromGitHub {
owner = "maxcountryman";
repo = pname;
rev = version;
sha256 = "0036gag3nj7fzib23lbbpwhlrn1s0kkrfwk5pd90y4cjcfqh8z9x";
};
propagatedBuildInputs = [
flask
bcrypt
];
checkPhase = ''
${python.interpreter} test_bcrypt.py
'';
meta = with lib; {
description = "Brcrypt hashing for Flask";
homepage = "https://github.com/maxcountryman/flask-bcrypt";
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}