python312Packages.axis: 63 -> 64

Diff: https://github.com/Kane610/axis/compare/refs/tags/v63...v64

Changelog: https://github.com/Kane610/axis/releases/tag/v64
This commit is contained in:
Fabian Affolter
2024-12-16 22:53:52 +01:00
parent f8fa46d73d
commit b3a4361a94
@@ -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";
};
}