9 buildPythonPackage rec {
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
17 owner = "johnpaulett";
19 rev = "refs/tags/${version}";
20 hash = "sha256-9uFdyL4+9KSWXflyOMOeUudZTv4NwYPa0ADNTmuVbqo=";
23 nativeBuildInputs = [ setuptools ];
25 nativeCheckInputs = [ pytestCheckHook ];
27 pythonImportsCheck = [ "hl7" ];
30 description = "A simple library for parsing messages of Health Level 7 (HL7) version 2.x into Python objects";
31 homepage = "https://python-hl7.readthedocs.org";
32 changelog = "https://python-hl7.readthedocs.io/en/latest/changelog.html";
33 license = licenses.bsd3;
34 maintainers = with maintainers; [ bcdarwin ];