Merge pull request #54118 from r-ryantm/auto-update/python3.7-jaraco.logging

python37Packages.jaraco_logging: 1.5.2 -> 2.0
This commit is contained in:
Robert Schütz 2019-01-18 12:32:13 +01:00 committed by GitHub
commit c130559401
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,26 @@
{ buildPythonPackage, fetchPypi, setuptools_scm
, tempora, six }:
{ lib, buildPythonPackage, fetchPypi, setuptools_scm
, tempora, six, pytest, pytest-flake8 }:
buildPythonPackage rec {
pname = "jaraco.logging";
version = "1.5.2";
version = "2.0";
src = fetchPypi {
inherit pname version;
sha256 = "199pgwx9ziab3gxg6p0c24z8dp3bjpsvvshnmlph9zjsssq0xc93";
sha256 = "1lb846j7qs1hgqwkyifv51nhl3f8jimbc4lk8yn9nkaynw0vyzcg";
};
doCheck = false;
buildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ tempora six ];
checkInputs = [ pytest pytest-flake8 ];
checkPhase = ''
PYTHONPATH=".:$PYTHONPATH" pytest
'';
meta = with lib; {
description = "Support for Python logging facility";
homepage = https://github.com/jaraco/jaraco.logging;
license = licenses.mit;
};
}