python3Packages.jaraco_logging: disable tests, no longer on pypi

This commit is contained in:
Jonathan Ringer
2020-06-23 16:09:22 -07:00
committed by Jon
parent 12bf275bab
commit 893d924d53
2 changed files with 6 additions and 46 deletions
@@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi, setuptools_scm
, tempora, six, pytest
, tempora, six
}:
buildPythonPackage rec {
@@ -11,15 +11,13 @@ buildPythonPackage rec {
sha256 = "31716fe84d3d5df39d95572942513bd4bf8ae0a478f64031eff4c2ea9e83434e";
};
patches = [ ./0001-Don-t-run-flake8-checks-during-the-build.patch ];
buildInputs = [ setuptools_scm ];
nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ tempora six ];
checkInputs = [ pytest ];
checkPhase = ''
PYTHONPATH=".:$PYTHONPATH" pytest
'';
# test no longer packaged with pypi
doCheck = false;
pythonImportsCheck = [ "jaraco.logging" ];
meta = with lib; {
description = "Support for Python logging facility";