nixpkgs/pkgs/development/python-modules/soupsieve/default.nix
2022-07-21 22:35:16 +02:00

36 lines
736 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, hatchling
, isPy3k
, backports_functools_lru_cache
}:
buildPythonPackage rec {
pname = "soupsieve";
version = "2.3.2.post1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-/FOJOz2iwz3ilWZ6DhnweMFL+GVErzBzVN5fzxKj8w0=";
};
nativeBuildInputs = [
hatchling
];
# Circular dependency on beautifulsoup4
doCheck = false;
# Circular dependency on beautifulsoup4
# pythonImportsCheck = [ "soupsieve" ];
meta = with lib; {
description = "A CSS4 selector implementation for Beautiful Soup";
license = licenses.mit;
homepage = "https://github.com/facelessuser/soupsieve";
maintainers = with maintainers; [ ];
};
}