python310Packages.rules: init at 3.3.0

This commit is contained in:
Martin Weinelt 2023-05-08 01:29:48 +02:00
parent b12e23df62
commit 227778a165
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,45 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
# tests
, django
, djangorestframework
, python
}:
buildPythonPackage rec {
pname = "rules";
version = "3.3.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "dfunckt";
repo = "django-rules";
rev = "v${version}";
hash = "sha256-UFRfRwcvxEn0fD3ScJJ7f/EHd93BOpY3cEF9QDryJZY=";
};
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 ];
};
}

View File

@ -10588,6 +10588,8 @@ self: super: with self; {
ruffus = callPackage ../development/python-modules/ruffus { };
rules = callPackage ../development/python-modules/rules { };
ruuvitag-ble = callPackage ../development/python-modules/ruuvitag-ble { };
ruyaml = callPackage ../development/python-modules/ruyaml { };