1{ lib
2, buildPythonPackage
3, pythonOlder
4, fetchPypi
5, tinycss2
6, pytest
7, pytestrunner
8, pytestcov
9, pytest-flake8
10, pytest-isort
11}:
12
13buildPythonPackage rec {
14 pname = "cssselect2";
15 version = "0.3.0";
16 disabled = pythonOlder "3.5";
17
18 src = fetchPypi {
19 inherit pname version;
20 sha256 = "5c2716f06b5de93f701d5755a9666f2ee22cbcd8b4da8adddfc30095ffea3abc";
21 };
22
23 propagatedBuildInputs = [ tinycss2 ];
24
25 checkInputs = [ pytest pytestrunner pytestcov pytest-flake8 pytest-isort ];
26
27 meta = with lib; {
28 description = "CSS selectors for Python ElementTree";
29 homepage = "https://github.com/Kozea/cssselect2";
30 license = licenses.bsd3;
31 };
32}