Unverified Commit 6941074d authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.mwdblib: 4.5.0 -> 4.6.0 (#446691)

parents 1567675b 09ce48dd
Loading
Loading
Loading
Loading
+12 −14
Original line number Diff line number Diff line
@@ -2,38 +2,36 @@
  lib,
  beautifultable,
  buildPythonPackage,
  click,
  click-default-group,
  click,
  fetchFromGitHub,
  humanize,
  keyring,
  unittestCheckHook,
  python-dateutil,
  pythonOlder,
  requests,
  setuptools,
  unittestCheckHook,
}:

buildPythonPackage rec {
  pname = "mwdblib";
  version = "4.5.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";
  version = "4.6.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "CERT-Polska";
    repo = "mwdblib";
    tag = "v${version}";
    hash = "sha256-+hh7SJFITpLumIuzNgBbXtFh+26tUG66UFv6DLDk5ag=";
    hash = "sha256-1oz//6rQiuV/WAv+6qs12ULPhB5nmf7ntcHSAKnRT8E=";
  };

  propagatedBuildInputs = [
  build-system = [ setuptools ];

  dependencies = [
    beautifultable
    click
    click-default-group
    humanize
    keyring
    python-dateutil
    requests
  ];

@@ -43,10 +41,10 @@ buildPythonPackage rec {

  meta = with lib; {
    description = "Python client library for the mwdb service";
    mainProgram = "mwdb";
    homepage = "https://github.com/CERT-Polska/mwdblib";
    changelog = "https://github.com/CERT-Polska/mwdblib/releases/tag/v${version}";
    license = with licenses; [ bsd3 ];
    changelog = "https://github.com/CERT-Polska/mwdblib/releases/tag/${src.tag}";
    license = licenses.bsd3;
    maintainers = with maintainers; [ fab ];
    mainProgram = "mwdb";
  };
}