depot/nix/pkgs/baserow/backend/pynixify/packages/elementpath/default.nix

25 lines
656 B
Nix
Raw Normal View History

2021-12-21 00:18:16 +00:00
# WARNING: This file was automatically generated. You should avoid editing it.
# If you run pynixify again, the file will be either overwritten or
# deleted, and you will lose the changes you made to it.
2022-11-02 02:02:11 +00:00
{ buildPythonPackage, fetchPypi, lib }:
2021-12-21 00:18:16 +00:00
buildPythonPackage rec {
2023-01-14 23:34:44 +00:00
pname = "elementpath";
version = "3.0.2";
2021-12-21 00:18:16 +00:00
src = fetchPypi {
inherit pname version;
2023-01-14 23:34:44 +00:00
sha256 = "03wl8rcyrqb1m0i8v1dp619c2k6fwq3ajhachxwlyd8gvi18g8fc";
2021-12-21 00:18:16 +00:00
};
# TODO FIXME
doCheck = false;
meta = with lib; {
2022-11-02 02:02:11 +00:00
description =
2023-01-14 23:34:44 +00:00
"XPath 1.0/2.0/3.0 parsers and selectors for ElementTree and lxml";
homepage = "https://github.com/sissaschool/elementpath";
2021-12-21 00:18:16 +00:00
};
}