11 buildPythonPackage rec {
15 src = fetchFromGitHub {
19 sha256 = "sha256-xYwnv30I0+CAx4QODSeMNhdlM2NuM8v4J3rx99NdYCc=";
22 propagatedBuildInputs = [
33 # Some tests needs network capabilities
34 "test_str_types_empty"
35 "test_associate_reject"
44 "TestQRGetServiceClass"
45 "TestQRMoveServiceClass"
53 pythonImportsCheck = [ "pynetdicom" ];
56 description = "Python implementation of the DICOM networking protocol";
57 homepage = "https://github.com/pydicom/pynetdicom";
58 license = with licenses; [ mit ];
59 maintainers = with maintainers; [ fab ];
60 # Tests are not passing on Darwin/Aarch64, thus it's assumed that it doesn't work
61 broken = stdenv.isDarwin || stdenv.isAarch64;