python3Packages.pycoolmasternet-async: 0.2.2 -> 0.2.3

Diff: https://github.com/OnFreund/pycoolmasternet-async/compare/v0.2.2...v0.2.3

Changed files
+5 -8
pkgs
development
python-modules
pycoolmasternet-async
+5 -8
pkgs/development/python-modules/pycoolmasternet-async/default.nix
···
lib,
buildPythonPackage,
fetchFromGitHub,
-
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "pycoolmasternet-async";
-
version = "0.2.2";
pyproject = true;
-
disabled = pythonOlder "3.7";
-
src = fetchFromGitHub {
owner = "OnFreund";
repo = "pycoolmasternet-async";
tag = "v${version}";
-
hash = "sha256-MfWWy4C/G2w0Zb4C6iYbcfKciFtWctZ63K8lWaHuSnQ=";
};
build-system = [ setuptools ];
···
pythonImportsCheck = [ "pycoolmasternet_async" ];
-
meta = with lib; {
description = "Python library to control CoolMasterNet HVAC bridges over asyncio";
homepage = "https://github.com/OnFreund/pycoolmasternet-async";
-
license = licenses.mit;
-
maintainers = with maintainers; [ dotlambda ];
};
}
···
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage rec {
pname = "pycoolmasternet-async";
+
version = "0.2.3";
pyproject = true;
src = fetchFromGitHub {
owner = "OnFreund";
repo = "pycoolmasternet-async";
tag = "v${version}";
+
hash = "sha256-n7P4R9gYfTSgDETWEeuhzbpt1CXbD8jXgbCXrQmsKz0=";
};
build-system = [ setuptools ];
···
pythonImportsCheck = [ "pycoolmasternet_async" ];
+
meta = {
description = "Python library to control CoolMasterNet HVAC bridges over asyncio";
homepage = "https://github.com/OnFreund/pycoolmasternet-async";
+
license = lib.licenses.mit;
+
maintainers = with lib.maintainers; [ dotlambda ];
};
}