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

54 lines
961 B
Nix
Raw Normal View History

2020-01-10 23:27:37 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, requests
, keyring
, keyrings-alt
, click
, six
, tzlocal
, certifi
, bitstring
, unittest2
2020-02-27 07:48:28 +00:00
, future
2020-01-10 23:27:37 +00:00
}:
buildPythonPackage rec {
pname = "pyicloud";
2020-03-18 17:01:51 +00:00
version = "0.9.5";
2020-01-10 23:27:37 +00:00
src = fetchPypi {
inherit pname version;
2020-03-18 17:01:51 +00:00
sha256 = "1c8sdlqcmpajcpf6jfpi6amncibm9c3zrl1860r0vfimps50m34h";
2020-01-10 23:27:37 +00:00
};
propagatedBuildInputs = [
requests
keyring
keyrings-alt
click
six
tzlocal
certifi
bitstring
2020-02-27 07:48:28 +00:00
future
2020-01-10 23:27:37 +00: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-10 23:27:37 +00:00
license = licenses.mit;
maintainers = [ maintainers.mic92 ];
};
}