python312Packages.flask-allowed-hosts: 1.1.2 -> 1.2.0 (#361132)
[NixPkgs.git] / pkgs / development / python-modules / jaraco-logging / default.nix
blob3368ac4ae19e6844c40253207dee745d9f244590
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   setuptools,
7   setuptools-scm,
8   tempora,
9 }:
11 buildPythonPackage rec {
12   pname = "jaraco-logging";
13   version = "3.3.0";
14   format = "pyproject";
16   disabled = pythonOlder "3.8";
18   src = fetchPypi {
19     pname = "jaraco.logging";
20     inherit version;
21     hash = "sha256-9KfPusuGqDTCiGwBo7UrxM3icowdlxfEnU3OHWJI8Hs=";
22   };
24   pythonNamespaces = [ "jaraco" ];
26   nativeBuildInputs = [
27     setuptools
28     setuptools-scm
29   ];
31   propagatedBuildInputs = [ tempora ];
33   # test no longer packaged with pypi
34   doCheck = false;
36   pythonImportsCheck = [ "jaraco.logging" ];
38   meta = with lib; {
39     description = "Support for Python logging facility";
40     homepage = "https://github.com/jaraco/jaraco.logging";
41     changelog = "https://github.com/jaraco/jaraco.logging/blob/v${version}/NEWS.rst";
42     license = licenses.mit;
43     maintainers = [ ];
44   };