python39Packages.p1monitor: enable tests, fix version number

This commit is contained in:
Sandro Jäckel 2022-02-07 02:54:01 +01:00 committed by Jonathan Ringer
parent 9e09621697
commit 8edb8eadeb

View File

@ -1,8 +1,11 @@
{ lib
, aiohttp
, aresponses
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, yarl
}:
@ -21,6 +24,12 @@ buildPythonPackage rec {
sha256 = "1ciaclgq4aknldjqlqa08jcab28sbqrjxy5nqqwlnb2wlprg5ijz";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace '"0.0.0"' '"${version}"' \
--replace 'addopts = "--cov"' ""
'';
nativeBuildInputs = [
poetry-core
];
@ -30,8 +39,11 @@ buildPythonPackage rec {
yarl
];
# Project has no tests
doCheck = false;
checkInputs = [
aresponses
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [ "p1monitor" ];