Files
nixpkgs/pkgs/development/python-modules/css-parser/default.nix
T

23 lines
605 B
Nix
Raw Normal View History

2019-01-13 19:46:58 +08:00
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "css-parser";
2020-10-28 23:34:36 +00:00
version = "1.0.6";
2019-01-13 19:46:58 +08:00
src = fetchPypi {
inherit pname version;
2020-10-28 23:34:36 +00:00
sha256 = "4ed448a8a5622edb1d30d616bbc4bd3d30f11be922343d7a92d7e418e324af2e";
2019-01-13 19:46:58 +08:00
};
# 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";
2019-01-13 19:46:58 +08:00
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ jethro ];
};
}