From b3a4361a94b825a446c335ae893a33d142935cd8 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 16 Dec 2024 22:53:37 +0100 Subject: [PATCH] python312Packages.axis: 63 -> 64 Diff: https://github.com/Kane610/axis/compare/refs/tags/v63...v64 Changelog: https://github.com/Kane610/axis/releases/tag/v64 --- pkgs/development/python-modules/axis/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/axis/default.nix b/pkgs/development/python-modules/axis/default.nix index 766e8ff1026a..1cbd2ccc271c 100644 --- a/pkgs/development/python-modules/axis/default.nix +++ b/pkgs/development/python-modules/axis/default.nix @@ -14,22 +14,22 @@ buildPythonPackage rec { pname = "axis"; - version = "63"; + version = "64"; pyproject = true; - disabled = pythonOlder "3.11"; + disabled = pythonOlder "3.12"; src = fetchFromGitHub { owner = "Kane610"; repo = "axis"; rev = "refs/tags/v${version}"; - hash = "sha256-XqNzYd7WgSDho3jyCHF1lDZWWpBEZFqGFmVOAUlm50o="; + hash = "sha256-6g4Dqk+oGlEcqlNuMiwep+NCVFmwRZjKgEZC1OzmKw0="; }; postPatch = '' substituteInPlace pyproject.toml \ - --replace-fail "setuptools==68.0.0" "setuptools" \ - --replace-fail "wheel==0.40.0" "wheel" + --replace-fail "setuptools==75.6.0" "setuptools" \ + --replace-fail "wheel==0.45.1" "wheel" ''; build-system = [ setuptools ]; @@ -50,10 +50,10 @@ buildPythonPackage rec { meta = with lib; { description = "Python library for communicating with devices from Axis Communications"; - mainProgram = "axis"; homepage = "https://github.com/Kane610/axis"; changelog = "https://github.com/Kane610/axis/releases/tag/v${version}"; - license = with licenses; [ mit ]; + license = licenses.mit; maintainers = with maintainers; [ fab ]; + mainProgram = "axis"; }; }