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