python3Packages.py-ccm15: 0.0.9 -> 0.1.2

This commit was automatically generated using update-python-libraries.

Changed files
+10 -4
pkgs
development
python-modules
py-ccm15
+10 -4
pkgs/development/python-modules/py-ccm15/default.nix
···
aiohttp,
}:
-
buildPythonPackage {
pname = "py-ccm15";
-
version = "0.0.9";
pyproject = true;
src = fetchFromGitHub {
···
# Upstream does not have a tag for this release and this is the exact release commit
# Therefore it should not be marked unstable
# upstream issue: https://github.com/ocalvo/py-ccm15/issues/10
-
rev = "3891d840e69d241c85bf9486e7fe0bb3c7443980";
-
hash = "sha256-I2/AdG07PAvuC8rQKOIAUk7u3pJpANMaFpvEsejWeBU=";
};
build-system = [ setuptools ];
···
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "ccm15" ];
meta = {
description = "Python Library to access a Midea CCM15 data converter";
homepage = "https://github.com/ocalvo/py-ccm15";
license = lib.licenses.mit;
···
aiohttp,
}:
+
buildPythonPackage rec {
pname = "py-ccm15";
+
version = "0.1.2";
pyproject = true;
src = fetchFromGitHub {
···
# Upstream does not have a tag for this release and this is the exact release commit
# Therefore it should not be marked unstable
# upstream issue: https://github.com/ocalvo/py-ccm15/issues/10
+
tag = "v${version}";
+
hash = "sha256-QfitJzCFk0gnlcCvvKzuI4fS1lVm79q4xaDZFKKt458=";
};
build-system = [ setuptools ];
···
nativeCheckInputs = [ pytestCheckHook ];
+
disabledTests = [
+
# tests use outdated function signature
+
"test_async_set_state"
+
];
+
pythonImportsCheck = [ "ccm15" ];
meta = {
+
changelog = "https://github.com/ocalvo/py-ccm15/releases/tag/${src.tag}";
description = "Python Library to access a Midea CCM15 data converter";
homepage = "https://github.com/ocalvo/py-ccm15";
license = lib.licenses.mit;