Merge pull request #133049 from SuperSandro2000/cleanup

This commit is contained in:
Sandro
2021-08-07 23:13:00 +02:00
committed by GitHub
3 changed files with 11 additions and 6 deletions
@@ -31,9 +31,12 @@ buildPythonPackage rec {
poetry-core
];
buildInputs = [
pytest
];
propagatedBuildInputs = [
aiohttp
pytest
pytest-asyncio
];
@@ -3,7 +3,6 @@
, pythonOlder
, fetchFromGitHub
, colorama
, pytest-runner
, pytest
, pytestCheckHook
}:
@@ -20,13 +19,17 @@ buildPythonPackage rec {
sha256 = "1siv3pk4fsabz254fdzr7c0pxy124habnbw4ym66pfk883fr96g2";
};
nativeBuildInputs = [
pytest-runner
postPatch = ''
substituteInPlace setup.cfg \
--replace "pytest-runner" ""
'';
buildInputs = [
pytest
];
propagatedBuildInputs = [
colorama
pytest
];
checkInputs = [
@@ -1,7 +1,6 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, ifaddr
, poetry-core
, pythonOlder