Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at gcc-offload 32 lines 716 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 pythonOlder, 6}: 7 8buildPythonPackage rec { 9 pname = "btest"; 10 version = "1.1"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchFromGitHub { 16 owner = "zeek"; 17 repo = "btest"; 18 rev = "refs/tags/v${version}"; 19 hash = "sha256-D01hAKcE52eKJRUh1/x5DGxRQpWgA2J0nutshpKrtRU="; 20 }; 21 22 # No tests available and no module to import 23 doCheck = false; 24 25 meta = with lib; { 26 description = "Generic Driver for Powerful System Tests"; 27 homepage = "https://github.com/zeek/btest"; 28 changelog = "https://github.com/zeek/btest/blob/${version}/CHANGES"; 29 license = licenses.bsd3; 30 maintainers = with maintainers; [ fab ]; 31 }; 32}