python311Packages.millheater: 0.10.0 -> 0.11.0

Diff: https://github.com/Danielhiversen/pymill/compare/0.10.0...0.11.0

Changelog: https://github.com/Danielhiversen/pymill/releases/tag/0.11.0
This commit is contained in:
Fabian Affolter 2023-08-05 09:58:15 +02:00
parent 9aabdcf43f
commit f6063283e1

View File

@ -2,29 +2,27 @@
, aiohttp
, async-timeout
, buildPythonPackage
, cryptography
, fetchFromGitHub
, pythonOlder
}:
buildPythonPackage rec {
pname = "millheater";
version = "0.10.0";
version = "0.11.0";
format = "setuptools";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "Danielhiversen";
repo = "pymill";
rev = version;
hash = "sha256-ImEg+VEiASQPnMeZzbYMMb+ZgcsxagQcN9IDFGO05Vw=";
rev = "refs/tags/${version}";
hash = "sha256-NECGUosjrhRCVGHOFV+YjY8o3heoA7qi9kKsgXpeHh0=";
};
propagatedBuildInputs = [
aiohttp
async-timeout
cryptography
];
# Project has no tests
@ -37,6 +35,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python library for Mill heater devices";
homepage = "https://github.com/Danielhiversen/pymill";
changelog = "https://github.com/Danielhiversen/pymill/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};