nixpkgs/pkgs/development/python-modules/jaraco-logging/default.nix
2023-09-01 14:12:46 +02:00

51 lines
933 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools
, setuptools-scm
, tempora
}:
buildPythonPackage rec {
pname = "jaraco-logging";
version = "3.2.0";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "jaraco.logging";
inherit version;
hash = "sha256-X8ssPxI1HU1QN1trYPOJnFg3sjLxotj/y6/17NK3M+c=";
};
pythonNamespaces = [
"jaraco"
];
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
tempora
];
# test no longer packaged with pypi
doCheck = false;
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; [ ];
};
}