Merge pull request #109448 from fabaff/pynetdicom

python3Packages.pynetdicom: init at 1.5.5
This commit is contained in:
Fabian Affolter 2021-03-14 02:04:53 +01:00 committed by GitHub
commit d6742106a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,55 @@
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, pydicom
, pyfakefs
, pytestCheckHook
, sqlalchemy
}:
buildPythonPackage rec {
pname = "pynetdicom";
version = "1.5.5";
src = fetchFromGitHub {
owner = "pydicom";
repo = pname;
rev = "v${version}";
sha256 = "0zjpscxdhlcv99py7jx5r6dw32nzbcr49isrzkdr6g3zwyxwzbfm";
};
propagatedBuildInputs = [
pydicom
];
checkInputs = [
pyfakefs
pytestCheckHook
sqlalchemy
];
disabledTests = [
# Some tests needs network capabilities
"test_str_types_empty"
"TestEchoSCP"
"TestEchoSCPCLI"
"TestStoreSCP"
"TestStoreSCPCLI"
"TestStoreSCU"
"TestStoreSCUCLI"
"TestQRGetServiceClass"
"TestQRMoveServiceClass"
];
pythonImportsCheck = [ "pynetdicom" ];
meta = with lib; {
description = "Python implementation of the DICOM networking protocol";
homepage = "https://github.com/pydicom/pynetdicom";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
# Tests are not passing on Darwin, thus it's assumed that it doesn't work
broken = stdenv.isDarwin;
};
}

View File

@ -5951,6 +5951,8 @@ in {
pynest2d = callPackage ../development/python-modules/pynest2d { };
pynetdicom = callPackage ../development/python-modules/pynetdicom { };
pynisher = callPackage ../development/python-modules/pynisher { };
pynmea2 = callPackage ../development/python-modules/pynmea2 { };