mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 02:33:25 +00:00
b9b3be8e09
we no longer need to backport to python3.2
35 lines
694 B
Nix
35 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; [ ];
|
|
};
|
|
}
|