Skip to content

Commit be6fcaf

Browse files
committed
Switch to pyproject
As of Nixpkgs commit d2e9be2, specifying pyproject is required. [1] NixOS/nixpkgs@d2e9be2
1 parent 94cee2c commit be6fcaf

File tree

5 files changed

+10
-3
lines changed

5 files changed

+10
-3
lines changed

pkgs/locker-support.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ in buildPythonPackage {
1818
hash = "sha256-s/L6LbBcRdno1EFbTDeQg5CMV2uJLn7xaOQgpiFLOfQ=";
1919
};
2020

21+
pyproject = true;
2122
build-system = [
2223
setuptools
2324
];

pkgs/pyhesiodfs.nix

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
{ stdenv, pkgs, lib, fetchFromGitHub,
2-
python3Packages,
3-
python-hesiod, locker-support,
1+
{ stdenv, pkgs, lib, fetchFromGitHub, # general nix
2+
python3Packages, # nix python
3+
python-hesiod, locker-support, # athena
44
}:
55

66
let
@@ -17,6 +17,9 @@ in python3Packages.buildPythonApplication {
1717
hash = "sha256-5Y10agUgfPuJ7Mg8IR0ZMtgqMXmG8F+kTQyjXrBGnBk=";
1818
};
1919

20+
pyproject = true;
21+
build-system = [ python3Packages.setuptools ];
22+
2023
dependencies = with python3Packages; [
2124
fuse
2225
(python-hesiod python3Packages)

pkgs/python-afs.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ in buildPythonPackage {
1616
hash = "sha256-pm3UCNqUKSzlfOk4jTenrg6PH8SMRgrRQE4uABXvXD0=";
1717
};
1818

19+
pyproject = true;
1920
build-system = [
2021
setuptools
2122
];

pkgs/python-discuss.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ in buildPythonPackage {
1313
hash = "sha256-8/ew78oM39U+ibbQvYkCe0kzIBYgK2YznVWQiA7nWds=";
1414
};
1515

16+
pyproject = true;
1617
build-system = [
1718
setuptools
1819
];

pkgs/python-hesiod.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ in buildPythonPackage {
1818
hash = "sha256-Lsq5LCQvEjL7Pga+LLpkTjYWBQM3VLmQ8LWVYI+Llkc=";
1919
};
2020

21+
pyproject = true;
2122
build-system = [
2223
setuptools
2324
];

0 commit comments

Comments
 (0)