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

24 lines
656 B
Nix

# 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.
{ buildPythonPackage, fetchPypi, lib }:
buildPythonPackage rec {
pname = "elementpath";
version = "3.0.2";
src = fetchPypi {
inherit pname version;
sha256 = "03wl8rcyrqb1m0i8v1dp619c2k6fwq3ajhachxwlyd8gvi18g8fc";
};
# TODO FIXME
doCheck = false;
meta = with lib; {
description =
"XPath 1.0/2.0/3.0 parsers and selectors for ElementTree and lxml";
homepage = "https://github.com/sissaschool/elementpath";
};
}