python3Packages.pysnow: switch to pytestCheckHook

- use poetry-core
- rename requests-oauthlib
main
Fabian Affolter 2 years ago
parent 34a776c8ef
commit 1e69a845f9
  1. 58
      pkgs/development/python-modules/pysnow/default.nix

@ -1,56 +1,72 @@
{ lib
, brotli
, buildPythonPackage
, fetchFromGitHub
, poetry
, brotli
, ijson
, nose
, fetchpatch
, httpretty
, requests_oauthlib
, ijson
, poetry-core
, python_magic
, pytz
, pytestCheckHook
, requests-oauthlib
}:
buildPythonPackage rec {
pname = "pysnow";
version = "0.7.16";
format = "pyproject";
# tests not included in pypi tarball
src = fetchFromGitHub {
owner = "rbw";
repo = pname;
rev = version;
sha256 = "0dj90w742klfcjnx7yhp0nzki2mzafqzzr0rk2dp6vxn8h58z8ww";
hash = "sha256-nKOPCkS2b3ObmBnk/7FTv4o4vwUX+tOtZI5OQQ4HSTY=";
};
format = "pyproject";
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'ijson = "^2.5.1"' 'ijson = "*"' \
--replace 'pytz = "^2019.3"' 'pytz = "*"' \
--replace 'oauthlib = "^3.1.0"' 'oauthlib = "*"'
'';
nativeBuildInputs = [
poetry-core
];
nativeBuildInputs = [ poetry ];
propagatedBuildInputs = [
brotli
ijson
python_magic
pytz
requests_oauthlib
requests-oauthlib
];
checkInputs = [
httpretty
pytestCheckHook
];
checkInputs = [ nose httpretty ];
checkPhase = ''
nosetests --cover-package=pysnow --with-coverage --cover-erase
patches = [
# Switch to peotry-core, https://github.com/rbw/pysnow/pull/183
(fetchpatch {
name = "switch-to-poetry-core.patch";
url = "https://github.com/rbw/pysnow/commit/f214a203432b329df5317f3a25b2c0d9b55a9029.patch";
sha256 = "sha256-ViRR+9WStlaQwyrLGk/tMOUAcEMY+kB61ZEKGMQJ30o=";
})
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'ijson = "^2.5.1"' 'ijson = "*"' \
--replace 'pytz = "^2019.3"' 'pytz = "*"' \
--replace 'oauthlib = "^3.1.0"' 'oauthlib = "*"'
'';
pythonImportsCheck = [ "pysnow" ];
pythonImportsCheck = [
"pysnow"
];
meta = with lib; {
description = "ServiceNow HTTP client library written in Python";
homepage = "https://github.com/rbw/pysnow";
license = licenses.mit;
maintainers = [ maintainers.almac ];
maintainers = with maintainers; [ almac ];
};
}

Loading…
Cancel
Save