python.pkgs.tinycss2: init at 0.6.1
This commit is contained in:
parent
77f9ebc8ad
commit
6133e6525a
2 changed files with 25 additions and 0 deletions
23
pkgs/development/python-modules/tinycss2/default.nix
Normal file
23
pkgs/development/python-modules/tinycss2/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, webencodings, pytestrunner, pytestcov, pytest-flake8, pytest-isort, glibcLocales }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "tinycss2";
|
||||
version = "0.6.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "7c53c2c0e914c7711c295b3101bcc78e0b7eda23ff20228a936efe11cdcc7136";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ webencodings ];
|
||||
|
||||
checkInputs = [ pytestrunner pytestcov pytest-flake8 pytest-isort glibcLocales ];
|
||||
|
||||
LC_ALL = "en_US.UTF-8";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Low-level CSS parser for Python";
|
||||
homepage = https://github.com/Kozea/tinycss2;
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
}
|
|
@ -2005,6 +2005,8 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
tinycss2 = callPackage ../development/python-modules/tinycss2 { };
|
||||
|
||||
cssselect = callPackage ../development/python-modules/cssselect { };
|
||||
|
||||
cssutils = callPackage ../development/python-modules/cssutils { };
|
||||
|
|
Loading…
Reference in a new issue