python310Packages.soupsieve: document circular dependency, cleanup

authored by Sandro Jäckel and committed by Jonathan Ringer 1d5ed925 a40d0cbc

+7 -12
+7 -12
pkgs/development/python-modules/soupsieve/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 - , pytest 5 - , beautifulsoup4 6 , isPy3k 7 , backports_functools_lru_cache 8 }: ··· 16 sha256 = "b8d49b1cd4f037c7082a9683dfa1801aa2597fb11c3a1155b7a5b94829b4f1f9"; 17 }; 18 19 - checkPhase = '' 20 - py.test 21 - ''; 22 - 23 - checkInputs = [ pytest beautifulsoup4 ]; 24 - 25 propagatedBuildInputs = lib.optional (!isPy3k) backports_functools_lru_cache; 26 27 - # Circular test dependency on beautifulsoup4 28 doCheck = false; 29 30 - meta = { 31 description = "A CSS4 selector implementation for Beautiful Soup"; 32 - license = lib.licenses.mit; 33 homepage = "https://github.com/facelessuser/soupsieve"; 34 }; 35 - 36 }
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 , isPy3k 5 , backports_functools_lru_cache 6 }: ··· 14 sha256 = "b8d49b1cd4f037c7082a9683dfa1801aa2597fb11c3a1155b7a5b94829b4f1f9"; 15 }; 16 17 propagatedBuildInputs = lib.optional (!isPy3k) backports_functools_lru_cache; 18 19 + # Circular dependency on beautifulsoup4 20 doCheck = false; 21 22 + # Circular dependency on beautifulsoup4 23 + # pythonImportsCheck = [ "soupsieve" ]; 24 + 25 + meta = with lib; { 26 description = "A CSS4 selector implementation for Beautiful Soup"; 27 + license = licenses.mit; 28 homepage = "https://github.com/facelessuser/soupsieve"; 29 + maintainers = with maintainers; [ ]; 30 }; 31 }