python3Packages.luna-usb: 0.1.3 -> 0.2.0

This commit is contained in:
Karolis Stasaitis 2025-05-21 08:52:11 +02:00
parent efb042f57e
commit f40fdc43f5

View File

@ -2,7 +2,6 @@
lib, lib,
fetchFromGitHub, fetchFromGitHub,
buildPythonPackage, buildPythonPackage,
pythonOlder,
# build-system # build-system
setuptools, setuptools,
@ -21,15 +20,14 @@
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "luna-usb"; pname = "luna-usb";
version = "0.1.3"; version = "0.2.0";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "greatscottgadgets"; owner = "greatscottgadgets";
repo = "luna"; repo = "luna";
tag = version; tag = version;
hash = "sha256-BKFfEkhgOH0lYfkAE94h27pb+T/uJxKFmMeVJI9I3qg="; hash = "sha256-SVpAPq77IH2/2WZrc25j7q6qTMW2ToPY5lYQcYUlJfs=";
}; };
postPatch = '' postPatch = ''
@ -70,6 +68,5 @@ buildPythonPackage rec {
homepage = "https://github.com/greatscottgadgets/luna"; homepage = "https://github.com/greatscottgadgets/luna";
license = lib.licenses.bsd3; license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ carlossless ]; maintainers = with lib.maintainers; [ carlossless ];
broken = lib.versionAtLeast amaranth.version "0.5";
}; };
} }