Files
nixpkgs/pkgs/development/python-modules/labgrid/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

108 lines
2.1 KiB
Nix

{
ansicolors,
attrs,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
grpcio,
grpcio-tools,
grpcio-reflection,
jinja2,
lib,
mock,
openssh,
pexpect,
psutil,
pyserial,
pytestCheckHook,
pytest-benchmark,
pytest-dependency,
pytest-mock,
pyudev,
pyusb,
pyyaml,
requests,
setuptools,
setuptools-scm,
xmodem,
}:
buildPythonPackage rec {
pname = "labgrid";
version = "25.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "labgrid-project";
repo = "labgrid";
tag = "v${version}";
hash = "sha256-cLofkkp2T6Y9nQ5LIS7w9URZlt8DQNN8dm3NnrvcKWY=";
};
# Remove after package bump
patches = [
(fetchpatch {
url = "https://github.com/Emantor/labgrid/commit/4a66b43882811d50600e37aa39b24ec40398d184.patch";
sha256 = "sha256-eJMB1qFWiDzQXEB4dYOHYMQqCPHXEWCwWjNNY0yTC2s=";
})
(fetchpatch {
url = "https://github.com/Emantor/labgrid/commit/d9933b3ec444c35d98fd41685481ecae8ff28bf4.patch";
sha256 = "sha256-Zx5j+CD6Q89dLmTl5QSKI9M1IcZ97OCjEWtEbG+CKWE=";
})
(fetchpatch {
url = "https://github.com/Emantor/labgrid/commit/f0b672afe1e8976c257f0adff9bf6e7ee9760d6f.patch";
sha256 = "sha256-M7rg+W9SjWDdViWyWe3ERzbUowxzf09c4w1yG3jQGak=";
})
];
build-system = [
setuptools
setuptools-scm
];
dependencies = [
ansicolors
attrs
jinja2
grpcio
grpcio-tools
grpcio-reflection
pexpect
pyserial
pyudev
pyusb
pyyaml
requests
xmodem
];
pythonRemoveDeps = [ "pyserial-labgrid" ];
pythonImportsCheck = [ "labgrid" ];
nativeCheckInputs = [
mock
openssh
psutil
pytestCheckHook
pytest-benchmark
pytest-mock
pytest-dependency
];
disabledtests = [
# flaky, timing sensitive
"test_timing"
];
pytestFlags = [ "--benchmark-disable" ];
meta = {
description = "Embedded control & testing library";
homepage = "https://github.com/labgrid-project/labgrid";
license = lib.licenses.lgpl21Plus;
maintainers = with lib.maintainers; [ emantor ];
platforms = with lib.platforms; linux;
};
}