761042b10e
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-jaraco.logging/versions
14 lines
360 B
Nix
14 lines
360 B
Nix
{ buildPythonPackage, fetchPypi, setuptools_scm
|
|
, tempora, six }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jaraco.logging";
|
|
version = "2.0";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1lb846j7qs1hgqwkyifv51nhl3f8jimbc4lk8yn9nkaynw0vyzcg";
|
|
};
|
|
doCheck = false;
|
|
buildInputs = [ setuptools_scm ];
|
|
propagatedBuildInputs = [ tempora six ];
|
|
}
|