Unverified Commit 876b90e2 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.btest: 1.1 -> 1.2 (#436337)

parents de4fcaf6 bc6ffc09
Loading
Loading
Loading
Loading
+11 −5
Original line number Diff line number Diff line
@@ -2,30 +2,36 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  multiprocess,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
  pname = "btest";
  version = "1.1";
  format = "setuptools";
  version = "1.2";
  pyproject = true;

  disabled = pythonOlder "3.7";
  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "zeek";
    repo = "btest";
    tag = "v${version}";
    hash = "sha256-D01hAKcE52eKJRUh1/x5DGxRQpWgA2J0nutshpKrtRU=";
    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/${version}/CHANGES";
    changelog = "https://github.com/zeek/btest/blob/${src.tag}/CHANGES";
    license = licenses.bsd3;
    maintainers = with maintainers; [ fab ];
  };