Merge pull request #206415 from fabaff/pymyq-bump

python310Packages.pymyq: 3.1.5 -> 3.1.6
This commit is contained in:
Fabian Affolter
2022-12-17 09:40:02 +01:00
committed by GitHub
@@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "pymyq";
version = "3.1.5";
version = "3.1.6";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "arraylabs";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-/2eWB4rtHPptfc8Tm0CGk0UB+Hq1EmNhWmdrpPiUJcw=";
hash = "sha256-zhGCoZ7mkHlfDjEbQihtM23u+N6nfYsQhKmrloevzp8=";
};
propagatedBuildInputs = [
@@ -28,11 +28,14 @@ buildPythonPackage rec {
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "pymyq" ];
pythonImportsCheck = [
"pymyq"
];
meta = with lib; {
description = "Python wrapper for MyQ API";
homepage = "https://github.com/arraylabs/pymyq";
changelog = "https://github.com/arraylabs/pymyq/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};