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