1{ buildPythonPackage
2, lib
3, fetchFromGitHub
4}:
5
6buildPythonPackage rec {
7 version = "1.1.8";
8 pname = "elementpath";
9
10 src = fetchFromGitHub {
11 owner = "sissaschool";
12 repo = "elementpath";
13 rev = "v${version}";
14 sha256 = "0krczvf8r6pb3hb8qaxl9h2b4qwg180xk66gyxjf002im7ri75aj";
15 };
16
17 # avoid circular dependency with xmlschema which directly depends on this
18 doCheck = false;
19
20 meta = with lib; {
21 description = "XPath 1.0/2.0 parsers and selectors for ElementTree and lxml";
22 homepage = "https://github.com/sissaschool/elementpath";
23 license = licenses.mit;
24 maintainers = with maintainers; [ jonringer ];
25 };
26}