mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
78 lines
1.3 KiB
Nix
78 lines
1.3 KiB
Nix
{ ansicolors
|
|
, attrs
|
|
, autobahn
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, jinja2
|
|
, lib
|
|
, mock
|
|
, packaging
|
|
, pexpect
|
|
, psutil
|
|
, pyserial
|
|
, pytestCheckHook
|
|
, pytest-dependency
|
|
, pytest-mock
|
|
, pyudev
|
|
, pyusb
|
|
, pyyaml
|
|
, requests
|
|
, setuptools-scm
|
|
, xmodem
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "labgrid";
|
|
version = "0.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "labgrid-project";
|
|
repo = "labgrid";
|
|
rev = "v${version}";
|
|
sha256 = "0ih04lh1q3dysps4vfmk2rhqqrsimssadsxvbxdsnim2yihrrw47";
|
|
};
|
|
|
|
patches = [
|
|
# Pyserial within Nixpkgs already includes the necessary fix, remove the
|
|
# pyserial version check from labgrid.
|
|
./0001-serialdriver-remove-pyserial-version-check.patch
|
|
];
|
|
|
|
nativeBuildInputs = [ setuptools-scm ];
|
|
|
|
propagatedBuildInputs = [
|
|
ansicolors
|
|
attrs
|
|
autobahn
|
|
jinja2
|
|
packaging
|
|
pexpect
|
|
pyserial
|
|
pyudev
|
|
pyusb
|
|
pyyaml
|
|
requests
|
|
xmodem
|
|
];
|
|
|
|
preBuild = ''
|
|
export SETUPTOOLS_SCM_PRETEND_VERSION="${version}"
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
psutil
|
|
pytestCheckHook
|
|
pytest-mock
|
|
pytest-dependency
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Embedded control & testing library";
|
|
homepage = "https://labgrid.org";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ emantor ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|