mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-20 23:10:19 +08:00
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
38 lines
688 B
Nix
38 lines
688 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, flask
|
|
, bcrypt
|
|
, unittestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flask-bcrypt";
|
|
version = "1.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "maxcountryman";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-WlIholi/nzq6Ikc0LS6FhG0Q5Kz0kvvAlA2YJ7EksZ4=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
flask
|
|
bcrypt
|
|
];
|
|
|
|
nativeCheckInputs = [ unittestCheckHook ];
|
|
|
|
pythonImportsCheck = [
|
|
"flask_bcrypt"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Brcrypt hashing for Flask";
|
|
homepage = "https://github.com/maxcountryman/flask-bcrypt";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.costrouc ];
|
|
};
|
|
}
|