python3Packages.testfixtures: 8.3.0 -> 9.1.0

https://github.com/simplistix/testfixtures/blob/9.1.0/CHANGELOG.rst

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2025-08-09 19:04:26 +02:00
parent a7aaa69efd
commit 902103eac8
@@ -1,7 +1,6 @@
{
lib,
buildPythonPackage,
fetchpatch2,
fetchPypi,
mock,
pytestCheckHook,
@@ -13,7 +12,7 @@
buildPythonPackage rec {
pname = "testfixtures";
version = "8.3.0";
version = "9.1.0";
pyproject = true;
# DO NOT CONTACT upstream.
# https://github.com/simplistix/ is only concerned with internal CI process.
@@ -26,17 +25,9 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
hash = "sha256-1MC4SvLyZ2EPkIAJtQ1vmDpOWK3iLGe6tnh7WkAtWcA=";
hash = "sha256-UX6c81OUJyNTOuEQDKRd0n/geFw60nZQdfXLHLzgFII=";
};
patches = [
(fetchpatch2 {
name = "python313-compat.patch";
url = "https://github.com/simplistix/testfixtures/commit/a23532c7bc685589cce6a5037821a74da48959e7.patch?full_index=1";
hash = "sha256-k0j/WgA+6LNTYJ233GJjeRU403bJJRxbpOu+BUsMeyQ=";
})
];
build-system = [ setuptools ];
nativeCheckInputs = [
@@ -46,6 +37,11 @@ buildPythonPackage rec {
twisted
];
disabledTests = [
"test_filter_missing"
"test_filter_present"
];
disabledTestPaths = [
# Django is too much hasle to setup at the moment
"testfixtures/tests/test_django"