Skip to content

Commit d60aee9

Browse files
committed
pdb2pqr: fix build
1 parent 3a8ebeb commit d60aee9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
buildPythonPackage,
44
fetchPypi,
55
pythonOlder,
6+
hatchling,
67
mmcif-pdbx,
78
numpy,
89
propka,
@@ -16,7 +17,7 @@
1617
buildPythonPackage rec {
1718
pname = "pdb2pqr";
1819
version = "3.7.1";
19-
format = "setuptools";
20+
pyproject = true;
2021

2122
disabled = pythonOlder "3.7";
2223

@@ -27,6 +28,10 @@ buildPythonPackage rec {
2728

2829
pythonRelaxDeps = [ "docutils" ];
2930

31+
build-system = [
32+
hatchling
33+
];
34+
3035
propagatedBuildInputs = [
3136
mmcif-pdbx
3237
numpy

0 commit comments

Comments
 (0)