depot/third_party/nixpkgs/pkgs/development/python-modules/soupsieve/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

34 lines
694 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, hatchling
, isPy3k
}:
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; [ ];
};
}