python312Packages.stevedore: 5.4.0 -> 5.4.1 (#385117)

This commit is contained in:
Sandro
2025-02-26 19:35:17 +01:00
committed by GitHub
3 changed files with 7 additions and 13 deletions
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchPypi,
aiosqlite,
alembic,
debtcollector,
oslo-config,
@@ -46,6 +47,7 @@ buildPythonPackage rec {
];
nativeCheckInputs = [
aiosqlite
oslo-context
oslotest
stestr
@@ -55,7 +57,7 @@ buildPythonPackage rec {
];
checkPhase = ''
stestr run
stestr run -e <(echo "oslo_db.tests.sqlalchemy.test_utils.TestModelQuery.test_project_filter_allow_none")
'';
pythonImportsCheck = [ "oslo_db" ];
@@ -4,21 +4,20 @@
callPackage,
fetchPypi,
pythonOlder,
importlib-metadata,
pbr,
setuptools,
}:
buildPythonPackage rec {
pname = "stevedore";
version = "5.4.0";
version = "5.4.1";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-eekiNey4KP6VK2uLDGyHhjJIYxkiyOjg+lsXsjLEUU0=";
hash = "sha256-MTW1rlD+EoFu8pG6/0IKy3J/zTVhBuPpy/qeWYXNb0s=";
};
build-system = [
@@ -26,11 +25,6 @@ buildPythonPackage rec {
setuptools
];
dependencies = [
importlib-metadata
setuptools
];
# Checks moved to 'passthru.tests' to workaround infinite recursion
doCheck = false;
@@ -42,8 +36,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Manage dynamic plugins for Python applications";
homepage = "https://docs.openstack.org/stevedore/";
homepage = "https://github.com/openstack/stevedore";
license = licenses.asl20;
maintainers = teams.openstack.members ++ (with maintainers; [ fab ]);
maintainers = teams.openstack.members;
};
}
@@ -1,6 +1,5 @@
{
buildPythonPackage,
docutils,
sphinx,
stestr,
stevedore,
@@ -15,7 +14,6 @@ buildPythonPackage {
dontInstall = true;
nativeCheckInputs = [
docutils
sphinx
stestr
stevedore