ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / soupsieve / default.nix
blob632894e8697ab532dffe973d4d016c53a2b9c74f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , hatchling
5 , isPy3k
6 , backports_functools_lru_cache
7 }:
9 buildPythonPackage rec {
10   pname = "soupsieve";
11   version = "2.3.2.post1";
12   format = "pyproject";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "sha256-/FOJOz2iwz3ilWZ6DhnweMFL+GVErzBzVN5fzxKj8w0=";
17   };
19   nativeBuildInputs = [
20     hatchling
21   ];
23   # Circular dependency on beautifulsoup4
24   doCheck = false;
26   # Circular dependency on beautifulsoup4
27   # pythonImportsCheck = [ "soupsieve" ];
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   };