python3Packages.pynetdicom: 2.0.1 -> 2.0.2

This commit is contained in:
Fabian Affolter 2022-04-23 20:24:04 +02:00
parent 46561f0891
commit bafe6ab889

View file

@ -11,7 +11,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pynetdicom"; pname = "pynetdicom";
version = "2.0.1"; version = "2.0.2";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -20,7 +20,7 @@ buildPythonPackage rec {
owner = "pydicom"; owner = "pydicom";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-28SoOdS6sAj3KrfJT8PR2k8XLEY2zh0k9w1eq1y7V8M="; sha256 = "sha256-/JWQUtFBW4uqCbs/nUxj1pRBfTCXV4wcqTkqvzpdFrM=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -40,14 +40,17 @@ buildPythonPackage rec {
"TestAEGoodAssociation" "TestAEGoodAssociation"
"TestEchoSCP" "TestEchoSCP"
"TestEchoSCPCLI" "TestEchoSCPCLI"
"TestEventHandlingAcceptor"
"TestFindSCP" "TestFindSCP"
"TestFindSCPCLI" "TestFindSCPCLI"
"TestGetSCP" "TestGetSCP"
"TestGetSCPCLI" "TestGetSCPCLI"
"TestMoveSCP" "TestMoveSCP"
"TestMoveSCPCLI" "TestMoveSCPCLI"
"TestPrimitive_N_GET"
"TestQRGetServiceClass" "TestQRGetServiceClass"
"TestQRMoveServiceClass" "TestQRMoveServiceClass"
"TestSearch"
"TestState" "TestState"
"TestStorageServiceClass" "TestStorageServiceClass"
"TestStoreSCP" "TestStoreSCP"
@ -56,6 +59,11 @@ buildPythonPackage rec {
"TestStoreSCUCLI" "TestStoreSCUCLI"
]; ];
disabledTestPaths = [
# Ignore apps tests
"pynetdicom/apps/tests/"
];
pythonImportsCheck = [ pythonImportsCheck = [
"pynetdicom" "pynetdicom"
]; ];