2019-10-15 02:53:34 +01:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub }:
|
2019-08-01 21:22:09 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-12-24 09:52:17 +00:00
|
|
|
version = "1.3.3";
|
2019-08-01 21:22:09 +01:00
|
|
|
pname = "elementpath";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sissaschool";
|
|
|
|
repo = "elementpath";
|
|
|
|
rev = "v${version}";
|
2019-12-24 09:52:17 +00:00
|
|
|
sha256 = "05wplh836ffwhncf5rpdnz4g1b3mqw7jiy83352nw4x3aak4ifbr";
|
2019-08-01 21:22:09 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# avoid circular dependency with xmlschema which directly depends on this
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "XPath 1.0/2.0 parsers and selectors for ElementTree and lxml";
|
|
|
|
homepage = "https://github.com/sissaschool/elementpath";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ jonringer ];
|
|
|
|
};
|
|
|
|
}
|