Skip to content

Commit

Permalink
Merge pull request #312761 from mweinelt/rules-3.4.0
Browse files Browse the repository at this point in the history
python312Packages.rules: 3.3.0 -> 3.4.0
  • Loading branch information
mweinelt authored May 19, 2024
2 parents c48947a + 0b07345 commit 68ead29
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
1 change: 1 addition & 0 deletions pkgs/by-name/pr/pretalx/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ python.pkgs.buildPythonApplication rec {
"pillow"
"python-dateutil"
"reportlab"
"rules"
];

propagatedBuildInputs = with python.pkgs; [
Expand Down
13 changes: 10 additions & 3 deletions pkgs/development/python-modules/rules/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
, buildPythonPackage
, fetchFromGitHub

# build-system
, setuptools

# tests
, django
, djangorestframework
Expand All @@ -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"
];
Expand Down

0 comments on commit 68ead29

Please sign in to comment.