Skip to content

Commit

Permalink
python312Packages.pyvera: 0.3.15 -> 0.3.16 (NixOS#381112)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff authored Feb 13, 2025
2 parents 9bfef53 + a5d219c commit e0a7f90
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions pkgs/development/python-modules/pyvera/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,27 @@
pytest-timeout,
responses,
pytestCheckHook,
pythonOlder,
requests,
}:

buildPythonPackage rec {
pname = "pyvera";
version = "0.3.15";
format = "pyproject";
version = "0.3.16";
pyproject = true;

disabled = pythonOlder "3.11";

src = fetchFromGitHub {
owner = "pavoni";
repo = pname;
rev = version;
hash = "sha256-1+xIqOogRUt+blX7AZSKIiU8lpR4AzKIIW/smCSft94=";
repo = "pyvera";
tag = version;
hash = "sha256-WLzVOQEykST2BsVRHmcBhrsd/am0jI/f7D0PmpCTbdQ=";
};

nativeBuildInputs = [ poetry-core ];
build-system = [ poetry-core ];

propagatedBuildInputs = [ requests ];
dependencies = [ requests ];

nativeCheckInputs = [
pytest-asyncio
Expand All @@ -40,7 +43,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python library to control devices via the Vera hub";
homepage = "https://github.com/pavoni/pyvera";
license = with licenses; [ gpl2Only ];
changelog = "https://github.com/maximvelichko/pyvera/releases/tag/${version}";
license = licenses.gpl2Only;
maintainers = with maintainers; [ fab ];
};
}

0 comments on commit e0a7f90

Please sign in to comment.