Merge pull request #169992 from fabaff/bump-pynetdicom
python3Packages.pynetdicom: 2.0.1 -> 2.0.2
This commit is contained in:
commit
6e3f9459e3
2 changed files with 12 additions and 2 deletions
|
@ -3,6 +3,7 @@
|
|||
, fetchFromGitHub
|
||||
, future
|
||||
, hypothesis
|
||||
, packaging
|
||||
, parameterized
|
||||
, msgpack
|
||||
, pyserial
|
||||
|
@ -29,6 +30,7 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [
|
||||
msgpack
|
||||
packaging
|
||||
pyserial
|
||||
typing-extensions
|
||||
wrapt
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "pynetdicom";
|
||||
version = "2.0.1";
|
||||
version = "2.0.2";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
@ -20,7 +20,7 @@ buildPythonPackage rec {
|
|||
owner = "pydicom";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-28SoOdS6sAj3KrfJT8PR2k8XLEY2zh0k9w1eq1y7V8M=";
|
||||
sha256 = "sha256-/JWQUtFBW4uqCbs/nUxj1pRBfTCXV4wcqTkqvzpdFrM=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -40,14 +40,17 @@ buildPythonPackage rec {
|
|||
"TestAEGoodAssociation"
|
||||
"TestEchoSCP"
|
||||
"TestEchoSCPCLI"
|
||||
"TestEventHandlingAcceptor"
|
||||
"TestFindSCP"
|
||||
"TestFindSCPCLI"
|
||||
"TestGetSCP"
|
||||
"TestGetSCPCLI"
|
||||
"TestMoveSCP"
|
||||
"TestMoveSCPCLI"
|
||||
"TestPrimitive_N_GET"
|
||||
"TestQRGetServiceClass"
|
||||
"TestQRMoveServiceClass"
|
||||
"TestSearch"
|
||||
"TestState"
|
||||
"TestStorageServiceClass"
|
||||
"TestStoreSCP"
|
||||
|
@ -56,6 +59,11 @@ buildPythonPackage rec {
|
|||
"TestStoreSCUCLI"
|
||||
];
|
||||
|
||||
disabledTestPaths = [
|
||||
# Ignore apps tests
|
||||
"pynetdicom/apps/tests/"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pynetdicom"
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue