python3Packages.mobly: init at 1.12

This commit is contained in:
Martin Weinelt 2023-01-12 02:27:07 +01:00
parent 7991fc0740
commit 76e0648203
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 53 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };