python3Packages.pyatmo: 4.2.1 -> 4.2.2

This commit is contained in:
Martin Weinelt 2021-01-24 02:50:04 +01:00
parent fb1c27f9e9
commit c984bc100d

View file

@ -12,20 +12,20 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyatmo"; pname = "pyatmo";
version = "4.2.1"; version = "4.2.2";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jabesq"; owner = "jabesq";
repo = "netatmo-api-python"; repo = "pyatmo";
rev = "v${version}"; rev = "v${version}";
sha256 = "12lmjhqjn71a358nkpzl3dwgiwmmz4lcv9f0qf69ngznpiirk28m"; sha256 = "sha256-3IxDDLa8KMHVkHAeTmdNVRPc5aKzF3VwL2kKnG8Fp7I=";
}; };
postPatch = '' postPatch = ''
substituteInPlace setup.cfg \ substituteInPlace setup.cfg \
--replace "oauthlib~=3.1.0" "oauthlib" \ --replace "oauthlib~=3.1" "oauthlib" \
--replace "requests~=2.23.0" "requests" --replace "requests~=2.24" "requests"
''; '';
propagatedBuildInputs = [ propagatedBuildInputs = [