15 buildPythonPackage rec {
16 pname = "jaraco-test";
20 disabled = pythonOlder "3.8";
22 src = fetchFromGitHub {
26 hash = "sha256-jbnU6PFVUd/eD9CWHyJvaTFkcZaIIwztkN9UbQZH1RU=";
29 build-system = [ setuptools-scm ];
39 nativeCheckInputs = [ pytestCheckHook ];
42 # https://github.com/jaraco/jaraco.test/issues/6
43 "jaraco/test/cpython.py"
46 pythonImportsCheck = [ "jaraco.test" ];
49 description = "Testing support by jaraco";
50 homepage = "https://github.com/jaraco/jaraco.test";
51 changelog = "https://github.com/jaraco/jaraco.test/blob/${src.rev}/NEWS.rst";
52 license = licenses.mit;
53 maintainers = with maintainers; [ dotlambda ];