Skip to content

Commit bae109d

Browse files
committed
python312Packages.python-hl7: fix pname
1 parent c8637a9 commit bae109d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
}:
99

1010
buildPythonPackage rec {
11-
pname = "python-hl7";
11+
pname = "hl7";
1212
version = "0.4.5";
1313
pyproject = true;
1414

@@ -17,11 +17,11 @@ buildPythonPackage rec {
1717
src = fetchFromGitHub {
1818
owner = "johnpaulett";
1919
repo = "python-hl7";
20-
rev = "refs/tags/${version}";
20+
tag = version;
2121
hash = "sha256-9uFdyL4+9KSWXflyOMOeUudZTv4NwYPa0ADNTmuVbqo=";
2222
};
2323

24-
nativeBuildInputs = [ setuptools ];
24+
build-system = [ setuptools ];
2525

2626
nativeCheckInputs = [ pytestCheckHook ];
2727

0 commit comments

Comments
 (0)