pythonPackages.hcloud: 1.12.0 -> 1.13.0

This release drops support for Python 2.7.
This commit is contained in:
Olli Helenius 2021-07-16 14:44:33 +03:00
parent 9136707191
commit 530be5f459
No known key found for this signature in database
GPG key ID: 67235CC88F41DE3C

View file

@ -8,15 +8,17 @@
, isort
, mock
, pytest
, isPy27
}:
buildPythonPackage rec {
pname = "hcloud";
version = "1.12.0";
version = "1.13.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "1fka4m3kbz52pksrjw3v42k611x5kl06dxrc7p5rb64jg6gayjfl";
sha256 = "0f84nwr3ddzivlnswwmhvm3lgq9fy3n7nryy93xqpk5nxcd1ybpn";
};
propagatedBuildInputs = [ future requests python-dateutil ];