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