mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
pythonPackages.elementpath: init at 1.1.8
This commit is contained in:
parent
ac0d7ef870
commit
53e1df4e30
2 changed files with 28 additions and 0 deletions
26
pkgs/development/python-modules/elementpath/default.nix
Normal file
26
pkgs/development/python-modules/elementpath/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{ 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2178,6 +2178,8 @@ in {
|
||||||
|
|
||||||
elasticsearch-curator = callPackage ../development/python-modules/elasticsearch-curator { };
|
elasticsearch-curator = callPackage ../development/python-modules/elasticsearch-curator { };
|
||||||
|
|
||||||
|
elementpath = callPackage ../development/python-modules/elementpath { };
|
||||||
|
|
||||||
entrypoints = callPackage ../development/python-modules/entrypoints { };
|
entrypoints = callPackage ../development/python-modules/entrypoints { };
|
||||||
|
|
||||||
enzyme = callPackage ../development/python-modules/enzyme {};
|
enzyme = callPackage ../development/python-modules/enzyme {};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue