From 71291bedb9764cb2f67745d3bc4b9c6a6b39f1b6 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 24 Mar 2025 13:04:49 +0100 Subject: [PATCH] python312Packages.cdcs: 0.2.3 -> 0.2.5 Diff: https://github.com/usnistgov/pycdcs/compare/refs/tags/v0.2.3...v0.2.5 Changelog: https://github.com/usnistgov/pycdcs/releases/tag/v0.2.5 --- .../python-modules/cdcs/default.nix | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/pkgs/development/python-modules/cdcs/default.nix b/pkgs/development/python-modules/cdcs/default.nix index e2e420553e02..d5cada9d7e29 100644 --- a/pkgs/development/python-modules/cdcs/default.nix +++ b/pkgs/development/python-modules/cdcs/default.nix @@ -6,7 +6,6 @@ numpy, pandas, pytestCheckHook, - pythonOlder, requests, responses, setuptools, @@ -15,16 +14,14 @@ buildPythonPackage rec { pname = "cdcs"; - version = "0.2.3"; + version = "0.2.5"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "usnistgov"; repo = "pycdcs"; tag = "v${version}"; - hash = "sha256-HhAzULVWkKOWDJ6IZyBy0MYc/YGAFkSTLIgpdyvw1eI="; + hash = "sha256-u3txoe8ZfofMqhDB1ZhNF0mq9fYgwotRguVUezhDvwk="; }; build-system = [ setuptools ]; @@ -44,16 +41,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "cdcs" ]; - disabledTests = [ - # Test is out-dated - "test_head" - ]; - - meta = with lib; { + meta = { description = "Python client for performing REST calls to configurable data curation system (CDCS) databases"; homepage = "https://github.com/usnistgov/pycdcs"; changelog = "https://github.com/usnistgov/pycdcs/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ fab ]; }; }