python3Packages.url-normalize: switch to poetry-core, remove cov and flakes

This commit is contained in:
Fabian Affolter 2022-01-02 11:28:42 +01:00
parent eb9d92ccb6
commit 559d193f4e

View file

@ -1,8 +1,8 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, poetry , fetchpatch
, pytest-cov , poetry-core
, pytest-flakes , pytest-flakes
, pytest-mock , pytest-mock
, pytest-socket , pytest-socket
@ -19,22 +19,41 @@ buildPythonPackage rec {
owner = "niksite"; owner = "niksite";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "09nac5nh94x0n4bfazjfxk96b20mfsx6r1fnvqv85gkzs0rwqkaq"; hash = "sha256-WE3MM9B/voI23taFbLp2FYhl0uxOfuUWsaCTBG1hyiY=";
}; };
nativeBuildInputs = [ poetry ]; nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [ six ]; propagatedBuildInputs = [
six
];
checkInputs = [ checkInputs = [
pytest-cov
pytest-flakes pytest-flakes
pytest-mock pytest-mock
pytest-socket pytest-socket
pytestCheckHook pytestCheckHook
]; ];
pythonImportsCheck = [ "url_normalize" ]; patches = [
# Switch to poetry-core, https://github.com/niksite/url-normalize/pull/28
(fetchpatch {
name = "switch-to-poetry-core.patch";
url = "https://github.com/niksite/url-normalize/commit/b8557b10c977b191cc9d37e6337afe874a24ad08.patch";
sha256 = "sha256-SVCQATV9V6HbLmjOHs7V7eBagO0PuqZLubIJghBYfQQ=";
})
];
postPatch = ''
sed -i "/--cov/d" tox.ini
sed -i "/--flakes/d" tox.ini
'';
pythonImportsCheck = [
"url_normalize"
];
meta = with lib; { meta = with lib; {
description = "URL normalization for Python"; description = "URL normalization for Python";