depot/third_party/nixpkgs/pkgs/development/python-modules/rules/default.nix

50 lines
984 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# tests
django,
djangorestframework,
python,
}:
buildPythonPackage rec {
pname = "rules";
version = "3.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "dfunckt";
repo = "django-rules";
rev = "v${version}";
hash = "sha256-fxLaxjni+0S59vtvKBduR0pYMwJWWBPzR5mnH+j6gVE=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "rules" ];
nativeCheckInputs = [
django
djangorestframework
];
checkPhase = ''
runHook preCheck
${python.interpreter} tests/manage.py test testsuite -v2
runHook postCheck
'';
meta = with lib; {
description = "Awesome Django authorization, without the database";
homepage = "https://github.com/dfunckt/django-rules";
changelog = "https://github.com/dfunckt/django-rules/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}