Files
nixpkgs/pkgs/development/python-modules/pytestrunner/default.nix
T

31 lines
650 B
Nix
Raw Normal View History

2021-01-25 09:26:54 +01:00
{ lib, buildPythonPackage, fetchPypi, setuptools_scm, pytest }:
2018-01-17 11:46:27 +01:00
buildPythonPackage rec {
pname = "pytest-runner";
2019-12-19 20:31:20 +01:00
version = "5.2";
2018-01-17 11:46:27 +01:00
src = fetchPypi {
inherit pname version;
2019-12-19 20:31:20 +01:00
sha256 = "96c7e73ead7b93e388c5d614770d2bae6526efd997757d3543fe17b557a0942b";
2018-01-17 11:46:27 +01:00
};
2019-01-05 11:54:27 +01:00
nativeBuildInputs = [ setuptools_scm pytest ];
2018-01-17 11:46:27 +01:00
postPatch = ''
rm pytest.ini
'';
checkPhase = ''
py.test tests
'';
# Fixture not found
doCheck = false;
meta = with lib; {
2018-01-17 11:46:27 +01:00
description = "Invoke py.test as distutils command with dependency resolution";
homepage = "https://github.com/pytest-dev/pytest-runner";
2018-01-17 11:46:27 +01:00
license = licenses.mit;
};
}