lol
0
fork

Configure Feed

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

python313Packages.testfixtures: fix tests

authored by

Robert Schütz and committed by
Martin Weinelt
73820257 964bd997

+9
+9
pkgs/development/python-modules/testfixtures/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 + fetchpatch2, 4 5 fetchPypi, 5 6 mock, 6 7 pytestCheckHook, ··· 27 28 inherit pname version; 28 29 hash = "sha256-1MC4SvLyZ2EPkIAJtQ1vmDpOWK3iLGe6tnh7WkAtWcA="; 29 30 }; 31 + 32 + patches = [ 33 + (fetchpatch2 { 34 + name = "python313-compat.patch"; 35 + url = "https://github.com/simplistix/testfixtures/commit/a23532c7bc685589cce6a5037821a74da48959e7.patch?full_index=1"; 36 + hash = "sha256-k0j/WgA+6LNTYJ233GJjeRU403bJJRxbpOu+BUsMeyQ="; 37 + }) 38 + ]; 30 39 31 40 build-system = [ setuptools ]; 32 41