From fa7a052aba76ca46ef9fd6de66936c39d6aeead5 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 19 Jan 2025 21:14:31 +0100 Subject: [PATCH] python3Packages.biothings-client: 0.3.1 -> 0.4.1 https://github.com/biothings/biothings_client.py/blob/v0.4.1/CHANGES.txt --- .../python-modules/biothings-client/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/biothings-client/default.nix b/pkgs/development/python-modules/biothings-client/default.nix index 67334498240c..240524dda262 100644 --- a/pkgs/development/python-modules/biothings-client/default.nix +++ b/pkgs/development/python-modules/biothings-client/default.nix @@ -8,14 +8,14 @@ }: buildPythonPackage rec { pname = "biothings-client"; - version = "0.3.1"; + version = "0.4.1"; pyproject = true; src = fetchFromGitHub { owner = "biothings"; repo = "biothings_client.py"; - rev = "v${version}"; - hash = "sha256-rCpzBX2H+7R8ulnJgtVlBA45ASa4DaY5jQ1bO2+bAC8="; + tag = "v${version}"; + hash = "sha256-uItIVoWbclF5Xkt7BxI/Q9sfKtrOJxYeJJmTd2NeGfo="; }; build-system = [ setuptools ]; @@ -31,7 +31,7 @@ buildPythonPackage rec { ]; meta = { - changelog = "https://github.com/biothings/biothings_client.py/blob/v${version}/CHANGES.txt"; + changelog = "https://github.com/biothings/biothings_client.py/blob/${src.tag}/CHANGES.txt"; description = "Wrapper to access Biothings.api-based backend services"; homepage = "https://github.com/biothings/biothings_client.py"; license = lib.licenses.bsd3;