python310Packages.subunit2sql: fix missing libararies, mark broken

This commit is contained in:
Sandro Jäckel
2024-01-23 10:43:15 +01:00
parent c28ce8b180
commit 4c321ff855
@@ -7,6 +7,8 @@
, pbr
, python-dateutil
, stestr
, testresources
, testscenarios
}:
buildPythonPackage rec {
@@ -29,6 +31,8 @@ buildPythonPackage rec {
mock
oslo-concurrency
stestr
testresources
testscenarios
];
checkPhase = ''
@@ -52,5 +56,7 @@ buildPythonPackage rec {
homepage = "https://opendev.org/opendev/subunit2sql";
license = licenses.asl20;
maintainers = teams.openstack.members;
# version 1.10.0 is incomptaible with oslo-db 14.0.0
broken = true;
};
}