tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.btest: init at 1.0
Fabian Affolter
3 years ago
c3fe41dd
1b634094
+33
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
btest
default.nix
top-level
python-packages.nix
+31
pkgs/development/python-modules/btest/default.nix
reviewed
···
1
1
+
{ lib
2
2
+
, buildPythonPackage
3
3
+
, fetchFromGitHub
4
4
+
, pythonOlder
5
5
+
}:
6
6
+
7
7
+
buildPythonPackage rec {
8
8
+
pname = "btest";
9
9
+
version = "1.0";
10
10
+
format = "setuptools";
11
11
+
12
12
+
disabled = pythonOlder "3.7";
13
13
+
14
14
+
src = fetchFromGitHub {
15
15
+
owner = "zeek";
16
16
+
repo = "btest";
17
17
+
rev = "refs/tags/v${version}";
18
18
+
hash = "sha256-QvK2MZTx+DD2u+h7dk0F5kInXGVp73ZTvG080WV2BVQ=";
19
19
+
};
20
20
+
21
21
+
# No tests available and no module to import
22
22
+
doCheck = false;
23
23
+
24
24
+
meta = with lib; {
25
25
+
description = "A Generic Driver for Powerful System Tests";
26
26
+
homepage = "https://github.com/zeek/btest";
27
27
+
changelog = "https://github.com/zeek/btest/blob/${version}/CHANGES";
28
28
+
license = licenses.bsd3;
29
29
+
maintainers = with maintainers; [ fab ];
30
30
+
};
31
31
+
}
+2
pkgs/top-level/python-packages.nix
reviewed
···
1477
1477
1478
1478
btchip-python = callPackage ../development/python-modules/btchip-python { };
1479
1479
1480
1480
+
btest = callPackage ../development/python-modules/btest { };
1481
1481
+
1480
1482
bthome-ble = callPackage ../development/python-modules/bthome-ble { };
1481
1483
1482
1484
bt-proximity = callPackage ../development/python-modules/bt-proximity { };