nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python310Packages.btest: init at 1.0

+33
+31
pkgs/development/python-modules/btest/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonOlder 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "btest"; 9 + version = "1.0"; 10 + format = "setuptools"; 11 + 12 + disabled = pythonOlder "3.7"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "zeek"; 16 + repo = "btest"; 17 + rev = "refs/tags/v${version}"; 18 + hash = "sha256-QvK2MZTx+DD2u+h7dk0F5kInXGVp73ZTvG080WV2BVQ="; 19 + }; 20 + 21 + # No tests available and no module to import 22 + doCheck = false; 23 + 24 + meta = with lib; { 25 + description = "A Generic Driver for Powerful System Tests"; 26 + homepage = "https://github.com/zeek/btest"; 27 + changelog = "https://github.com/zeek/btest/blob/${version}/CHANGES"; 28 + license = licenses.bsd3; 29 + maintainers = with maintainers; [ fab ]; 30 + }; 31 + }
+2
pkgs/top-level/python-packages.nix
··· 1477 1477 1478 1478 btchip-python = callPackage ../development/python-modules/btchip-python { }; 1479 1479 1480 + btest = callPackage ../development/python-modules/btest { }; 1481 + 1480 1482 bthome-ble = callPackage ../development/python-modules/bthome-ble { }; 1481 1483 1482 1484 bt-proximity = callPackage ../development/python-modules/bt-proximity { };