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

54 lines
973 B
Nix
Raw Normal View History

2020-01-11 02:27:37 +03:00
{ lib
, buildPythonPackage
, fetchPypi
, requests
, keyring
, keyrings-alt
, click
, six
, tzlocal
, certifi
, bitstring
, unittest2
2020-02-27 10:48:28 +03:00
, future
2020-01-11 02:27:37 +03:00
}:
buildPythonPackage rec {
pname = "pyicloud";
version = "0.9.7";
2020-01-11 02:27:37 +03:00
src = fetchPypi {
inherit pname version;
sha256 = "dcebb32e474bc28aa77b944a0a64949ef3b5b852cbef6256fbc95347a04e777c";
2020-01-11 02:27:37 +03:00
};
propagatedBuildInputs = [
requests
keyring
keyrings-alt
click
six
tzlocal
certifi
bitstring
2020-02-27 10:48:28 +03:00
future
2020-01-11 02:27:37 +03:00
];
checkInputs = [ unittest2 ];
postPatch = ''
sed -i \
-e 's!click>=6.0,<7.0!click!' \
-e 's!keyring>=8.0,<9.0!keyring!' \
-e 's!keyrings.alt>=1.0,<2.0!keyrings.alt!' \
requirements.txt
'';
meta = with lib; {
description = "PyiCloud is a module which allows pythonistas to interact with iCloud webservices";
homepage = "https://github.com/picklepete/pyicloud";
2020-01-11 02:27:37 +03:00
license = licenses.mit;
maintainers = [ maintainers.mic92 ];
};
}