nixpkgs/pkgs/development/python-modules/mobly/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
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.
2023-01-21 12:00:00 +00:00

52 lines
914 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
# runtime
, portpicker
, pyserial
, pyyaml
, timeout-decorator
, typing-extensions
# tests
, procps
, pytestCheckHook
, pytz
}:
buildPythonPackage rec {
pname = "mobly";
version = "1.12";
format = "setuptools";
src = fetchFromGitHub {
owner = "google";
repo = "mobly";
rev = "refs/tags/${version}";
hash = "sha256-HAXm0/h5jbgVuIwP7IZ1ffUs92gcpOPiM2VgT38r8Go=";
};
propagatedBuildInputs = [
portpicker
pyserial
pyyaml
timeout-decorator
typing-extensions
];
nativeCheckInputs = [
procps
pytestCheckHook
pytz
];
meta = with lib; {
changelog = "https://github.com/google/mobly/blob/";
description = "Automation framework for special end-to-end test cases";
homepage = "https://github.com/google/mobly";
license = licenses.asl20;
maintainers = with maintainers; [ hexa ];
};
}