Merge pull request #312761 from mweinelt/rules-3.4.0

python312Packages.rules: 3.3.0 -> 3.4.0
This commit is contained in:
Martin Weinelt 2024-05-19 02:38:19 +02:00 committed by GitHub
commit 68ead29211
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 3 deletions

View File

@ -96,6 +96,7 @@ python.pkgs.buildPythonApplication rec {
"pillow"
"python-dateutil"
"reportlab"
"rules"
];
propagatedBuildInputs = with python.pkgs; [

View File

@ -2,6 +2,9 @@
, buildPythonPackage
, fetchFromGitHub
# build-system
, setuptools
# tests
, django
, djangorestframework
@ -10,16 +13,20 @@
buildPythonPackage rec {
pname = "rules";
version = "3.3.0";
format = "setuptools";
version = "3.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "dfunckt";
repo = "django-rules";
rev = "v${version}";
hash = "sha256-UFRfRwcvxEn0fD3ScJJ7f/EHd93BOpY3cEF9QDryJZY=";
hash = "sha256-fxLaxjni+0S59vtvKBduR0pYMwJWWBPzR5mnH+j6gVE=";
};
build-system = [
setuptools
];
pythonImportsCheck = [
"rules"
];