Commit bae109d5 authored by Ben Darwin's avatar Ben Darwin
Browse files

python312Packages.python-hl7: fix pname

parent c8637a9b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@
}:

buildPythonPackage rec {
  pname = "python-hl7";
  pname = "hl7";
  version = "0.4.5";
  pyproject = true;

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

  nativeBuildInputs = [ setuptools ];
  build-system = [ setuptools ];

  nativeCheckInputs = [ pytestCheckHook ];