nixpkgs/pkgs/development/python-modules/pyxnat/default.nix

48 lines
980 B
Nix
Raw Normal View History

2020-06-09 20:17:22 +01:00
{ lib
, buildPythonPackage
, fetchPypi
2021-03-24 21:53:11 +00:00
, pythonOlder
2020-06-09 20:17:22 +01:00
, nose
, lxml
, requests
, six
2020-06-09 20:17:22 +01:00
}:
buildPythonPackage rec {
pname = "pyxnat";
2020-11-29 14:04:40 +00:00
version = "1.4";
2021-03-24 21:53:11 +00:00
disabled = pythonOlder "3.7";
2020-06-09 20:17:22 +01:00
src = fetchPypi {
inherit pname version;
2020-11-29 14:04:40 +00:00
sha256 = "22524120d744b50d25ef6bfc7052637e4ead9e2afac92563231ec89848f5adf5";
2020-06-09 20:17:22 +01:00
};
propagatedBuildInputs = [
lxml
requests
six
];
2020-06-09 20:17:22 +01:00
2021-03-24 21:53:11 +00:00
# future is not used, and pathlib is installed part of python38+
# w/o an external package
prePatch = ''
substituteInPlace setup.py \
--replace "pathlib>=1.0" "" \
--replace "future>=0.16" ""
'';
2020-06-09 20:17:22 +01:00
checkInputs = [ nose ];
checkPhase = "nosetests pyxnat/tests";
doCheck = false; # requires a docker container running an XNAT server
pythonImportsCheck = [ "pyxnat" ];
meta = with lib; {
homepage = "https://pyxnat.github.io/pyxnat";
description = "Python API to XNAT";
license = licenses.bsd3;
maintainers = with maintainers; [ bcdarwin ];
};
}