biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / css-parser / default.nix
blobabb1130c702d089a70158ae1dd48ac4665e58643
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "css-parser";
9   version = "1.0.10";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-vx6XKtMzROkyBpZPtM2QjZ3e+fzQwB+pPg1zRnU5Q2M=";
15   };
17   # Test suite not included in tarball yet
18   # See https://github.com/ebook-utils/css-parser/pull/2
19   doCheck = false;
21   pythonImportsCheck = [ "css_parser" ];
23   meta = with lib; {
24     description = "CSS Cascading Style Sheets library for Python";
25     homepage = "https://github.com/ebook-utils/css-parser";
26     license = licenses.lgpl3Plus;
27     maintainers = with maintainers; [ jethro ];
28   };