10 buildPythonPackage rec {
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
18 owner = "johnpaulett";
20 rev = "refs/tags/${version}";
21 hash = "sha256-9uFdyL4+9KSWXflyOMOeUudZTv4NwYPa0ADNTmuVbqo=";
24 nativeBuildInputs = [ setuptools ];
26 nativeCheckInputs = [ pytestCheckHook ];
28 pythonImportsCheck = [ "hl7" ];
31 description = "Simple library for parsing messages of Health Level 7 (HL7) version 2.x into Python objects";
32 mainProgram = "mllp_send";
33 homepage = "https://python-hl7.readthedocs.org";
34 changelog = "https://python-hl7.readthedocs.io/en/latest/changelog.html";
35 license = licenses.bsd3;
36 maintainers = with maintainers; [ bcdarwin ];