python3Packages.mobly: init at 1.12
This commit is contained in:
parent
7991fc0740
commit
76e0648203
2 changed files with 53 additions and 0 deletions
51
pkgs/development/python-modules/mobly/default.nix
Normal file
51
pkgs/development/python-modules/mobly/default.nix
Normal file
|
@ -0,0 +1,51 @@
|
|||
{ 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
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -5888,6 +5888,8 @@ self: super: with self; {
|
|||
|
||||
moat-ble = callPackage ../development/python-modules/moat-ble { };
|
||||
|
||||
mobly = callPackage ../development/python-modules/mobly { };
|
||||
|
||||
mocket = callPackage ../development/python-modules/mocket { };
|
||||
|
||||
mock = callPackage ../development/python-modules/mock { };
|
||||
|
|
Loading…
Reference in a new issue