python.pkgs.jaraco_logging: 1.5 -> 1.5.2

This commit is contained in:
Jörg Thalheim
2018-09-03 01:20:50 +01:00
parent 7cd2bf48f7
commit 9bc1b13983
2 changed files with 15 additions and 15 deletions

View File

@@ -0,0 +1,14 @@
{ buildPythonPackage, fetchPypi, setuptools_scm
, tempora, six }:
buildPythonPackage rec {
pname = "jaraco.logging";
version = "1.5.2";
src = fetchPypi {
inherit pname version;
sha256 = "199pgwx9ziab3gxg6p0c24z8dp3bjpsvvshnmlph9zjsssq0xc93";
};
doCheck = false;
buildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ tempora six ];
}