3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.smart-meter-texas: 0.4.4 -> 0.4.6

This commit is contained in:
Fabian Affolter 2021-08-24 17:03:02 +02:00 committed by Martin Weinelt
parent 136e531d7d
commit 3ff51dc247

View file

@ -3,13 +3,14 @@
, pythonOlder
, fetchFromGitHub
, aiohttp
, asn1
, python-dateutil
, tenacity
}:
buildPythonPackage rec {
pname = "smart-meter-texas";
version = "0.4.4";
version = "0.4.6";
disabled = pythonOlder "3.6";
@ -17,7 +18,7 @@ buildPythonPackage rec {
owner = "grahamwetzler";
repo = "smart-meter-texas";
rev = "v${version}";
sha256 = "sha256-jewibcsqWnl0OQ2oEEOSOcyyDCIGZiG4EZQfuFUbxK4=";
sha256 = "sha256-BZb02eIFYCrTDDqeo6FlGpm8LCN/GxcdKGTR5L2/DpE=";
};
postPatch = ''
@ -27,6 +28,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
aiohttp
asn1
python-dateutil
tenacity
];