diff --git a/pkgs/development/python-modules/polyswarm-api/default.nix b/pkgs/development/python-modules/polyswarm-api/default.nix index d472c25c8e88..28c86011fe8b 100644 --- a/pkgs/development/python-modules/polyswarm-api/default.nix +++ b/pkgs/development/python-modules/polyswarm-api/default.nix @@ -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 ]; }; -} +})