39 lines
801 B
Nix
39 lines
801 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
multiprocess,
|
|
pythonOlder,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "btest";
|
|
version = "1.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zeek";
|
|
repo = "btest";
|
|
tag = "v${version}";
|
|
hash = "sha256-c+iWzqq0RiRkZlRYjUCXIaFqgnyFdbMAWDNrVYZUvgw=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ multiprocess ];
|
|
|
|
# No tests available and no module to import
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Generic Driver for Powerful System Tests";
|
|
homepage = "https://github.com/zeek/btest";
|
|
changelog = "https://github.com/zeek/btest/blob/${src.tag}/CHANGES";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|