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