Unverified Commit dede3029 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

python3Packages.otxv2: 1.41 -> 1.5.12 (#495714)

parents 8d1d76ed b1efe3bd
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -8,16 +8,16 @@
  setuptools,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "otxv2";
  version = "1.41";
  version = "1.5.12";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "AlienVault-OTX";
    repo = "OTX-Python-SDK";
    tag = version;
    hash = "sha256-ifBDvUXTEQZo8DY2YD5DrH6rFJSjAhKAKCBOpG8+/zE=";
    tag = finalAttrs.version;
    hash = "sha256-JAjBXNsX0Cuni+4L6I1RuaSfors5cBAZ2krPLhIFluY=";
  };

  build-system = [ setuptools ];
@@ -36,8 +36,8 @@ buildPythonPackage rec {
  meta = {
    description = "The Python SDK for AlienVault OTX";
    homepage = "https://github.com/AlienVault-OTX/OTX-Python-SDK";
    changelog = "https://github.com/AlienVault-OTX/OTX-Python-SDK/releases/tag/${src.tag}";
    changelog = "https://github.com/AlienVault-OTX/OTX-Python-SDK/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})