Unverified Commit 19cb164c authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.yara-x: modernize

Updated changelog URL to reflect correct version tag.
parent 6944c579
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -3,17 +3,15 @@
  buildPythonPackage,
  rustPlatform,
  fetchFromGitHub,
  pythonOlder,
  pytestCheckHook,
  pkgs,
}:

buildPythonPackage rec {
  pname = "yara-x";
  version = "1.8.1";
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "VirusTotal";
    repo = "yara-x";
@@ -42,7 +40,7 @@ buildPythonPackage rec {
  meta = {
    description = "Official Python library for YARA-X";
    homepage = "https://github.com/VirusTotal/yara-x/tree/main/py";
    changelog = "https://github.com/VirusTotal/yara-x/tree/v${version}/py";
    changelog = "https://github.com/VirusTotal/yara-x/tree/${src.tag}/py";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ ivyfanchiang ];
  };