pythonPackages.css-parser: init at 1.0.4

This commit is contained in:
Jethro Kuan 2019-01-13 19:46:58 +08:00
parent 3c33db1e2c
commit d88fd61a42
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "css-parser";
version = "1.0.4";
src = fetchPypi {
inherit pname version;
sha256 = "c7ab355512ae51334ba6791a7e4d553f87bef17ba2026f1cc9bf3b17a7779d44";
};
# Test suite not included in tarball yet
# See https://github.com/ebook-utils/css-parser/pull/2
doCheck = false;
meta = with lib; {
description = "A CSS Cascading Style Sheets library for Python";
homepage = https://github.com/ebook-utils/css-parser;
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ jethro ];
};
}

View File

@ -1519,6 +1519,8 @@ in {
cssutils = callPackage ../development/python-modules/cssutils { };
css-parser = callPackage ../development/python-modules/css-parser { };
darcsver = callPackage ../development/python-modules/darcsver { };
dask = callPackage ../development/python-modules/dask { };