Unverified Commit 52cd8000 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #246993 from fabaff/millheater-bump

python311Packages.millheater: 0.10.0 -> 0.11.0
parents 5d30f497 f6063283
Loading
Loading
Loading
Loading
+5 −6
Original line number Diff line number Diff line
@@ -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 ];
  };