Skip to content

Commit

Permalink
python311Packages.approvaltests: 14.0.0 -> 14.3.0 (#365260)
Browse files Browse the repository at this point in the history
  • Loading branch information
dotlambda authored Dec 16, 2024
2 parents 66cdf59 + b07befd commit 66cb398
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/approvaltests/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

buildPythonPackage rec {
pname = "approvaltests";
version = "14.0.0";
version = "14.3.0";
pyproject = true;

disabled = pythonOlder "3.8";
Expand All @@ -30,7 +30,7 @@ buildPythonPackage rec {
owner = "approvals";
repo = "ApprovalTests.Python";
rev = "refs/tags/v${version}";
hash = "sha256-BTTmmtmFjYBfzbVf/Fi8PwnpVJBcOOBTdFBmGowGez4=";
hash = "sha256-HcF4SjAdAPxINB0+kI1RWtKQ3VBhMNpFk6BECup7E+w=";
};

build-system = [ setuptools ];
Expand Down
17 changes: 13 additions & 4 deletions pkgs/development/python-modules/mrjob/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
pythonAtLeast,
fetchFromGitHub,

# build-system
setuptools,

# propagates
distutils,
pyyaml,

# optionals
Expand All @@ -26,9 +30,7 @@
buildPythonPackage rec {
pname = "mrjob";
version = "0.7.4";

# https://github.com/Yelp/mrjob/issues/2222
disabled = pythonAtLeast "3.12";
pyproject = true;

src = fetchFromGitHub {
owner = "Yelp";
Expand All @@ -37,7 +39,14 @@ buildPythonPackage rec {
hash = "sha256-Yp4yUx6tkyGB622I9y+AWK2AkIDVGKQPMM+LtB/M3uo=";
};

propagatedBuildInputs = [ pyyaml ];
build-system = [
setuptools
];

dependencies = [
distutils
pyyaml
];

optional-dependencies = {
aws = [
Expand Down

0 comments on commit 66cb398

Please sign in to comment.