My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/jxmlease/default.nix

37 lines
749 B

{ lib
, buildPythonPackage
, fetchPypi
, lxml
, python
}:
buildPythonPackage rec {
pname = "jxmlease";
version = "1.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "17l3w3ak07p72s8kv8hg0ilxs0kkxjn7bfwnl3g2cw58v1siab31";
};
propagatedBuildInputs = [
lxml
];
# tests broken in expat bump
# https://github.com/Juniper/jxmlease/issues/26
doCheck = false;
checkPhase = ''
runHook preCheck
${python.interpreter} -m unittest discover -v
runHook postCheck
'';
meta = with lib; {
description = "Converts between XML and intelligent Python data structures";
homepage = "https://github.com/Juniper/jxmlease";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}