Files
nixpkgs/pkgs/development/python-modules/btest/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
801 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
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 ];
};
}