2018-01-17 11:46:27 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, setuptools_scm, pytest }:
|
|
|
|
|
|
|
|
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
|
|
|
|
2018-08-30 17:56:34 +02:00
|
|
|
postPatch = ''
|
|
|
|
rm pytest.ini
|
|
|
|
'';
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
py.test tests
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Fixture not found
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-01-17 11:46:27 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Invoke py.test as distutils command with dependency resolution";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/pytest-dev/pytest-runner";
|
2018-01-17 11:46:27 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|