depot/third_party/nixpkgs/pkgs/development/python-modules/jaraco_logging/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

44 lines
802 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, setuptools-scm
, tempora
, six
}:
buildPythonPackage rec {
pname = "jaraco-logging";
version = "3.1.2";
format = "pyproject";
src = fetchPypi {
pname = "jaraco.logging";
inherit version;
hash = "sha256-k6cLizdnd5rWx7Vu6YV5ztd7afFqu8rnSfYsLFnmeTE=";
};
pythonNamespaces = [ "jaraco" ];
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
tempora
six
];
# 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";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}