Merge pull request #156442 from fabaff/bump-heatzypy

python3Packages.heatzypy: 1.4.2 -> 2.0.1
This commit is contained in:
Fabian Affolter 2022-01-25 21:00:57 +01:00 committed by GitHub
commit 743aa7fd6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,5 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, requests
@ -8,7 +9,7 @@
buildPythonPackage rec {
pname = "heatzypy";
version = "1.4.2";
version = "2.0.1";
format = "setuptools";
disabled = pythonOlder "3.8";
@ -17,10 +18,11 @@ buildPythonPackage rec {
owner = "Cyr-ius";
repo = pname;
rev = version;
sha256 = "nENuH2u9RtWq86TW/sDFFeYS8GTWGj7qfcFS8AHFRGk=";
sha256 = "sha256-PnDsgTfr2F/fgbONP2qvuPhbw3X50AqriEmsFFjll2Y=";
};
propagatedBuildInputs = [
aiohttp
requests
];