We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c887e4b + d60aee9 commit ce2cb4fCopy full SHA for ce2cb4f
pkgs/development/python-modules/pdb2pqr/default.nix
@@ -3,6 +3,7 @@
3
buildPythonPackage,
4
fetchPypi,
5
pythonOlder,
6
+ hatchling,
7
mmcif-pdbx,
8
numpy,
9
propka,
@@ -16,7 +17,7 @@
16
17
buildPythonPackage rec {
18
pname = "pdb2pqr";
19
version = "3.7.1";
- format = "setuptools";
20
+ pyproject = true;
21
22
disabled = pythonOlder "3.7";
23
@@ -27,6 +28,10 @@ buildPythonPackage rec {
27
28
29
pythonRelaxDeps = [ "docutils" ];
30
31
+ build-system = [
32
+ hatchling
33
+ ];
34
+
35
propagatedBuildInputs = [
36
mmcif-pdbx
37
numpy
0 commit comments