ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / css-parser / default.nix
blob81c9aafa3c4b2ac7934d6eaa0ff10937133eba60
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "css-parser";
8   version = "1.0.8";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "sha256-mU1qARWo9OK2ZI4rEnMwNtBfoWQniqI0YwyfA+UsjIA=";
14   };
16   # Test suite not included in tarball yet
17   # See https://github.com/ebook-utils/css-parser/pull/2
18   doCheck = false;
20   pythonImportsCheck = [
21     "css_parser"
22   ];
24   meta = with lib; {
25     description = "A CSS Cascading Style Sheets library for Python";
26     homepage = "https://github.com/ebook-utils/css-parser";
27     license = licenses.lgpl3Plus;
28     maintainers = with maintainers; [ jethro ];
29   };