python313Packages.polyswarm-api: 3.14.1 -> 3.16.0 (#485800)

This commit is contained in:
Fabian Affolter
2026-02-01 01:54:22 +00:00
committed by GitHub
@@ -11,16 +11,16 @@
vcrpy,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "polyswarm-api";
version = "3.14.1";
version = "3.16.0";
pyproject = true;
src = fetchFromGitHub {
owner = "polyswarm";
repo = "polyswarm-api";
tag = version;
hash = "sha256-PCAdCM9R8hcf4SYm0scibP4xl769vlMl2jUFWaFBEYI=";
tag = finalAttrs.version;
hash = "sha256-mdsgHwbGThy2Lzvgzb0mItwJkNspLiqGZzBGGuQdatM=";
};
build-system = [ setuptools ];
@@ -42,8 +42,8 @@ buildPythonPackage rec {
meta = {
description = "Library to interface with the PolySwarm consumer APIs";
homepage = "https://github.com/polyswarm/polyswarm-api";
changelog = "https://github.com/polyswarm/polyswarm-api/releases/tag/${src.tag}";
changelog = "https://github.com/polyswarm/polyswarm-api/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})