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