nixpkgs/pkgs/development/python-modules/elementpath/default.nix
2019-08-01 13:22:09 -07:00

27 lines
646 B
Nix

{ buildPythonPackage
, lib
, fetchFromGitHub
}:
buildPythonPackage rec {
version = "1.1.8";
pname = "elementpath";
src = fetchFromGitHub {
owner = "sissaschool";
repo = "elementpath";
rev = "v${version}";
sha256 = "0krczvf8r6pb3hb8qaxl9h2b4qwg180xk66gyxjf002im7ri75aj";
};
# 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 ];
};
}