1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 hatchling, 6}: 7 8buildPythonPackage rec { 9 pname = "soupsieve"; 10 version = "2.7"; 11 format = "pyproject"; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-rSgvm2kmKG0urUdQVSyKYUK8THg/1msCk1R8j+auEmo="; 16 }; 17 18 nativeBuildInputs = [ hatchling ]; 19 20 # Circular dependency on beautifulsoup4 21 doCheck = false; 22 23 # Circular dependency on beautifulsoup4 24 # pythonImportsCheck = [ "soupsieve" ]; 25 26 meta = with lib; { 27 description = "CSS4 selector implementation for Beautiful Soup"; 28 license = licenses.mit; 29 homepage = "https://github.com/facelessuser/soupsieve"; 30 maintainers = [ ]; 31 }; 32}