1{ lib, buildPythonPackage, fetchPypi, webencodings, pytestrunner, pytestcov, pytest-flake8, pytest-isort, glibcLocales }: 2 3buildPythonPackage rec { 4 pname = "tinycss2"; 5 version = "0.6.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "7c53c2c0e914c7711c295b3101bcc78e0b7eda23ff20228a936efe11cdcc7136"; 10 }; 11 12 propagatedBuildInputs = [ webencodings ]; 13 14 checkInputs = [ pytestrunner pytestcov pytest-flake8 pytest-isort glibcLocales ]; 15 16 LC_ALL = "en_US.UTF-8"; 17 18 meta = with lib; { 19 description = "Low-level CSS parser for Python"; 20 homepage = https://github.com/Kozea/tinycss2; 21 license = licenses.bsd3; 22 }; 23}