python3.pkgs.pyicloud: 0.9.1 -> 0.9.2

This commit is contained in:
Jörg Thalheim 2020-02-27 07:48:28 +00:00
parent 9497ce5dd3
commit 112cc9c052
No known key found for this signature in database
GPG Key ID: 003F2096411B5F92

View File

@ -10,15 +10,16 @@
, certifi
, bitstring
, unittest2
, future
}:
buildPythonPackage rec {
pname = "pyicloud";
version = "0.9.1";
version = "0.9.2";
src = fetchPypi {
inherit pname version;
sha256 = "580b52e95f67a41ed86c56a514aa2b362f53fbaf23f16c69fb24e0d19fd373ee";
sha256 = "1jjkzf7vwms6pymnmdr893830vrymxnq455xnqp21wqhjjiy2amd";
};
propagatedBuildInputs = [
@ -30,6 +31,7 @@ buildPythonPackage rec {
tzlocal
certifi
bitstring
future
];
checkInputs = [ unittest2 ];