Merge pull request #198971 from SuperSandro2000/python310Packages.oslo-log

This commit is contained in:
Sandro 2022-11-06 12:28:42 +01:00 committed by GitHub
commit f3ce5678c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,7 @@
, stdenv
, buildPythonPackage
, fetchPypi
, eventlet
, oslo-config
, oslo-context
, oslo-serialization
@ -16,7 +17,7 @@
buildPythonPackage rec {
pname = "oslo-log";
version = "5.0.0";
version = "5.0.1";
format = "setuptools";
disabled = pythonOlder "3.6";
@ -24,7 +25,7 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "oslo.log";
inherit version;
hash = "sha256-c6tyNKii1QvfUmyHTfocsrEIO6+a2VvC64r1YkidTQE=";
hash = "sha256-+2Xy+dJEI/pt1urY7NIfZlxi4P2fkL8xHkwVO1+Kt+o=";
};
propagatedBuildInputs = [
@ -39,6 +40,7 @@ buildPythonPackage rec {
];
checkInputs = [
eventlet
oslotest
pytestCheckHook
];