Files
nixpkgs/pkgs/development/python-modules/luna-usb/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

73 lines
1.3 KiB
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
# build-system
setuptools,
# dependencies
amaranth,
libusb1,
pyserial,
pyusb,
pyvcd,
usb-protocol,
# tests
pytestCheckHook,
apollo-fpga,
}:
buildPythonPackage rec {
pname = "luna-usb";
version = "0.2.3";
pyproject = true;
src = fetchFromGitHub {
owner = "greatscottgadgets";
repo = "luna";
tag = version;
hash = "sha256-kH5PlgJRMymBZZ3oANR8xlAUPUgGZjqw9s9DcpQ809A=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail '"setuptools-git-versioning<2"' "" \
--replace-fail 'dynamic = ["version"]' 'version = "${version}"'
'';
build-system = [
setuptools
];
dependencies = [
amaranth
libusb1
pyserial
pyusb
pyvcd
usb-protocol
];
nativeCheckInputs = [
pytestCheckHook
apollo-fpga
];
enabledTestPaths = [
"tests/"
];
pythonImportsCheck = [
"luna"
];
meta = {
changelog = "https://github.com/greatscottgadgets/luna/releases/tag/${src.tag}";
description = "Amaranth HDL framework for monitoring, hacking, and developing USB devices";
homepage = "https://github.com/greatscottgadgets/luna";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ carlossless ];
};
}