From fd2905b9a8e25b412a28b91c42beeffe9bf24e2f Mon Sep 17 00:00:00 2001 From: Karolis Stasaitis Date: Wed, 21 May 2025 08:53:20 +0200 Subject: [PATCH] python3Packages.cynthion: 0.1.8 -> 0.2.0 --- pkgs/development/python-modules/cynthion/default.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/cynthion/default.nix b/pkgs/development/python-modules/cynthion/default.nix index 53df6a47a08d..a2bf3b2b2c70 100644 --- a/pkgs/development/python-modules/cynthion/default.nix +++ b/pkgs/development/python-modules/cynthion/default.nix @@ -2,7 +2,6 @@ lib, fetchFromGitHub, buildPythonPackage, - pythonOlder, # build-system setuptools, @@ -28,15 +27,14 @@ }: buildPythonPackage rec { pname = "cynthion"; - version = "0.1.8"; + version = "0.2.0"; pyproject = true; - disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "greatscottgadgets"; repo = "cynthion"; tag = version; - hash = "sha256-twkCv47Goob2cO7FeHegvab3asf8fqbY9qg97Vw4ZCo="; + hash = "sha256-rbvw2eieZwTxStwCRuvIx/f4vdPsOFnV/U80Ga+fNPA="; }; sourceRoot = "${src.name}/cynthion/python"; @@ -75,11 +73,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "cynthion" ]; meta = { - changelog = "https://github.com/greatscottgadgets/cynthion/releases/tag/${version}"; + changelog = "https://github.com/greatscottgadgets/cynthion/releases/tag/${src.tag}"; description = "Python package and utilities for the Great Scott Gadgets Cynthion USB Test Instrument"; homepage = "https://github.com/greatscottgadgets/cynthion"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ carlossless ]; - broken = lib.versionAtLeast amaranth.version "0.5"; }; }