From f40fdc43f53b68b367e61b7bf7a152910940cf83 Mon Sep 17 00:00:00 2001 From: Karolis Stasaitis Date: Wed, 21 May 2025 08:52:11 +0200 Subject: [PATCH] python3Packages.luna-usb: 0.1.3 -> 0.2.0 --- pkgs/development/python-modules/luna-usb/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/luna-usb/default.nix b/pkgs/development/python-modules/luna-usb/default.nix index 4469dea12b5d..7d4da8148302 100644 --- a/pkgs/development/python-modules/luna-usb/default.nix +++ b/pkgs/development/python-modules/luna-usb/default.nix @@ -2,7 +2,6 @@ lib, fetchFromGitHub, buildPythonPackage, - pythonOlder, # build-system setuptools, @@ -21,15 +20,14 @@ }: buildPythonPackage rec { pname = "luna-usb"; - version = "0.1.3"; + version = "0.2.0"; pyproject = true; - disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "greatscottgadgets"; repo = "luna"; tag = version; - hash = "sha256-BKFfEkhgOH0lYfkAE94h27pb+T/uJxKFmMeVJI9I3qg="; + hash = "sha256-SVpAPq77IH2/2WZrc25j7q6qTMW2ToPY5lYQcYUlJfs="; }; postPatch = '' @@ -70,6 +68,5 @@ buildPythonPackage rec { homepage = "https://github.com/greatscottgadgets/luna"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ carlossless ]; - broken = lib.versionAtLeast amaranth.version "0.5"; }; }