Skip to content

Commit 66cb398

Browse files
authored
python311Packages.approvaltests: 14.0.0 -> 14.3.0 (#365260)
2 parents 66cdf59 + b07befd commit 66cb398

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

pkgs/development/python-modules/approvaltests/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
buildPythonPackage rec {
2323
pname = "approvaltests";
24-
version = "14.0.0";
24+
version = "14.3.0";
2525
pyproject = true;
2626

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

3636
build-system = [ setuptools ];

pkgs/development/python-modules/mrjob/default.nix

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44
pythonAtLeast,
55
fetchFromGitHub,
66

7+
# build-system
8+
setuptools,
9+
710
# propagates
11+
distutils,
812
pyyaml,
913

1014
# optionals
@@ -26,9 +30,7 @@
2630
buildPythonPackage rec {
2731
pname = "mrjob";
2832
version = "0.7.4";
29-
30-
# https://github.com/Yelp/mrjob/issues/2222
31-
disabled = pythonAtLeast "3.12";
33+
pyproject = true;
3234

3335
src = fetchFromGitHub {
3436
owner = "Yelp";
@@ -37,7 +39,14 @@ buildPythonPackage rec {
3739
hash = "sha256-Yp4yUx6tkyGB622I9y+AWK2AkIDVGKQPMM+LtB/M3uo=";
3840
};
3941

40-
propagatedBuildInputs = [ pyyaml ];
42+
build-system = [
43+
setuptools
44+
];
45+
46+
dependencies = [
47+
distutils
48+
pyyaml
49+
];
4150

4251
optional-dependencies = {
4352
aws = [

0 commit comments

Comments
 (0)