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