nixpkgs/pkgs/development/python-modules/soupsieve/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

36 lines
726 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, hatchling
, isPy3k
, backports_functools_lru_cache
}:
buildPythonPackage rec {
pname = "soupsieve";
version = "2.4";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-4o26nKbHwAFz405LpXRI8GiLtoG3xei/SXHar8CT1po=";
};
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; [ ];
};
}