lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python311Packages.pynetdicom: unbreak tests

+9
+9
pkgs/development/python-modules/pynetdicom/default.nix
··· 2 2 , stdenv 3 3 , buildPythonPackage 4 4 , fetchFromGitHub 5 + , fetchpatch 5 6 , pydicom 6 7 , pyfakefs 7 8 , pytestCheckHook ··· 22 23 rev = "v${version}"; 23 24 hash = "sha256-/JWQUtFBW4uqCbs/nUxj1pRBfTCXV4wcqTkqvzpdFrM="; 24 25 }; 26 + 27 + patches = [ 28 + (fetchpatch { 29 + name = "fix-python-3.11-test-attribute-errors"; 30 + url = "https://github.com/pydicom/pynetdicom/pull/754/commits/2126bd932d6dfb3f07045eb9400acb7eaa1b3069.patch"; 31 + hash = "sha256-t6Lg0sTZSWIE5q5pkBvEoHDQ+cklDn8SgNBcFk1myp4="; 32 + }) 33 + ]; 25 34 26 35 propagatedBuildInputs = [ 27 36 pydicom