Unverified Commit ac8dfa0b authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python3Packages.evohome-async: 1.0.6 -> 1.1.3

parent dcd8f06a
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -18,9 +18,9 @@
  voluptuous,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "evohome-async";
  version = "1.0.6";
  version = "1.1.3";
  pyproject = true;

  disabled = pythonOlder "3.12";
@@ -28,8 +28,8 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "zxdavb";
    repo = "evohome-async";
    tag = version;
    hash = "sha256-8oeW6NWqYcZF+s2kRfeoVAp8JBbuDn+NQ0RU6nxVTAc=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-Xc5GWbKqgcIIHKBvcAIS8zL9rZeEDEkwHOhhUdnImbE=";
  };

  build-system = [ hatchling ];
@@ -56,16 +56,16 @@ buildPythonPackage rec {
    pyyaml
    syrupy
  ]
  ++ optional-dependencies.cli;
  ++ finalAttrs.passthru.optional-dependencies.cli;

  pythonImportsCheck = [ "evohomeasync2" ];

  meta = {
    description = "Python client for connecting to Honeywell's TCC RESTful API";
    homepage = "https://github.com/zxdavb/evohome-async";
    changelog = "https://github.com/zxdavb/evohome-async/releases/tag/${version}";
    changelog = "https://github.com/zxdavb/evohome-async/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ fab ];
    mainProgram = "evo-client";
  };
}
})