depot/third_party/nixpkgs/pkgs/development/python-modules/soupsieve/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

33 lines
695 B
Nix

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