Merge pull request #252744 from r-ryantm/auto-update/python310Packages.jaraco-logging

python310Packages.jaraco-logging: 3.1.2 -> 3.2.0
This commit is contained in:
Fabian Affolter
2023-09-01 15:15:40 +02:00
committed by GitHub
@@ -1,24 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools
, setuptools-scm
, tempora
, six
}:
buildPythonPackage rec {
pname = "jaraco-logging";
version = "3.1.2";
version = "3.2.0";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "jaraco.logging";
inherit version;
hash = "sha256-k6cLizdnd5rWx7Vu6YV5ztd7afFqu8rnSfYsLFnmeTE=";
hash = "sha256-X8ssPxI1HU1QN1trYPOJnFg3sjLxotj/y6/17NK3M+c=";
};
pythonNamespaces = [ "jaraco" ];
pythonNamespaces = [
"jaraco"
];
nativeBuildInputs = [
setuptools
@@ -27,17 +31,19 @@ buildPythonPackage rec {
propagatedBuildInputs = [
tempora
six
];
# test no longer packaged with pypi
doCheck = false;
pythonImportsCheck = [ "jaraco.logging" ];
pythonImportsCheck = [
"jaraco.logging"
];
meta = with lib; {
description = "Support for Python logging facility";
homepage = "https://github.com/jaraco/jaraco.logging";
changelog = "https://github.com/jaraco/jaraco.logging/blob/v${version}/NEWS.rst";
license = licenses.mit;
maintainers = with maintainers; [ ];
};