blob: 464a6c0ea9ecc0bab5991a277c1a417b4ba6731c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
}:
buildPythonPackage rec {
pname = "soupsieve";
version = "2.7";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-rSgvm2kmKG0urUdQVSyKYUK8THg/1msCk1R8j+auEmo=";
};
nativeBuildInputs = [ hatchling ];
# Circular dependency on beautifulsoup4
doCheck = false;
# Circular dependency on beautifulsoup4
# pythonImportsCheck = [ "soupsieve" ];
meta = {
description = "CSS4 selector implementation for Beautiful Soup";
license = lib.licenses.mit;
homepage = "https://github.com/facelessuser/soupsieve";
maintainers = [ ];
};
}
|