mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
33 lines
716 B
Nix
33 lines
716 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "btest";
|
|
version = "1.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zeek";
|
|
repo = "btest";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-D01hAKcE52eKJRUh1/x5DGxRQpWgA2J0nutshpKrtRU=";
|
|
};
|
|
|
|
# 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/${version}/CHANGES";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|