python310Packages.btest: init at 1.0

This commit is contained in:
Fabian Affolter 2023-03-27 20:29:26 +02:00
parent 1b63409492
commit c3fe41dd0a
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
}:
buildPythonPackage rec {
pname = "btest";
version = "1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "zeek";
repo = "btest";
rev = "refs/tags/v${version}";
hash = "sha256-QvK2MZTx+DD2u+h7dk0F5kInXGVp73ZTvG080WV2BVQ=";
};
# No tests available and no module to import
doCheck = false;
meta = with lib; {
description = "A Generic Driver for Powerful System Tests";
homepage = "https://github.com/zeek/btest";
changelog = "https://github.com/zeek/btest/blob/${version}/CHANGES";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -1477,6 +1477,8 @@ self: super: with self; {
btchip-python = callPackage ../development/python-modules/btchip-python { };
btest = callPackage ../development/python-modules/btest { };
bthome-ble = callPackage ../development/python-modules/bthome-ble { };
bt-proximity = callPackage ../development/python-modules/bt-proximity { };