From 059e667ea58ed968ba897731828afaaf80da1e00 Mon Sep 17 00:00:00 2001 From: Sizhe Zhao Date: Thu, 1 Jan 2026 11:34:10 +0800 Subject: [PATCH] python3Packages.cryptodatahub: 1.0.0 -> 1.0.2 --- .../development/python-modules/cryptodatahub/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/cryptodatahub/default.nix b/pkgs/development/python-modules/cryptodatahub/default.nix index b608ee7688f8..89133f3dfcbc 100644 --- a/pkgs/development/python-modules/cryptodatahub/default.nix +++ b/pkgs/development/python-modules/cryptodatahub/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "cryptodatahub"; - version = "1.0.0"; + version = "1.0.2"; pyproject = true; disabled = pythonOlder "3.9"; @@ -24,8 +24,8 @@ buildPythonPackage rec { src = fetchFromGitLab { owner = "coroner"; repo = "cryptodatahub"; - rev = "refs/tags/v${version}"; - hash = "sha256-taYpSYkfucc9GQpVDiAZgCt/D3Akld20LkFEhsdKH0Q="; + tag = "v${version}"; + hash = "sha256-DQspaa9GsnRjETKUca2i91iBPbT4qATmKiL8M0nBP/A="; }; build-system = [ @@ -51,7 +51,6 @@ buildPythonPackage rec { preCheck = '' # failing tests rm test/updaters/test_common.py - rm test/common/test_key.py # Tests require network access rm test/common/test_utils.py ''; @@ -59,7 +58,7 @@ buildPythonPackage rec { meta = { description = "Repository of cryptography-related data"; homepage = "https://gitlab.com/coroner/cryptodatahub"; - changelog = "https://gitlab.com/coroner/cryptodatahub/-/blob/${version}/CHANGELOG.rst"; + changelog = "https://gitlab.com/coroner/cryptodatahub/-/blob/${src.tag}/CHANGELOG.rst"; license = lib.licenses.mpl20; maintainers = [ ]; };