Files
nixpkgs/pkgs/development/python-modules/usb-protocol/default.nix
2025-08-20 17:44:07 +00:00

58 lines
1.2 KiB
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
pythonOlder,
# build-system
setuptools,
# dependencies
construct,
# tests
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "usb-protocol";
version = "0.9.2";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "greatscottgadgets";
repo = "python-usb-protocol";
tag = version;
hash = "sha256-lLepd2ja/UBSOARHXVwuCxLCIp0vTpUQBMdR2ovfhq8=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail '"setuptools-git-versioning<2"' "" \
--replace-fail 'dynamic = ["version"]' 'version = "${version}"'
'';
build-system = [
setuptools
];
dependencies = [ construct ];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"usb_protocol"
];
meta = {
changelog = "https://github.com/greatscottgadgets/python-usb-protocol/releases/tag/${src.tag}";
description = "Python library providing utilities, data structures, constants, parsers, and tools for working with the USB protocol";
homepage = "https://github.com/greatscottgadgets/python-usb-protocol";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ carlossless ];
};
}