Commit d6255094 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python311Packages.nvdlib: init at 0.7.6

Module to interact with the National Vulnerability CVE/CPE API

ttps://github.com/Vehemont/nvdlib
parent 53755e6d
Loading
Loading
Loading
Loading
+49 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, requests
, responses
, setuptools
}:

buildPythonPackage rec {
  pname = "nvdlib";
  version = "0.7.6";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "Vehemont";
    repo = "nvdlib";
    rev = "refs/tags/v${version}";
    hash = "sha256-p2xx+QC0P30FR+nMiFW/PoINbcTM49ufADW9B9u2WxI=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    requests
  ];

  nativeCheckInputs = [
    pytestCheckHook
    responses
  ];

  pythonImportsCheck = [
    "nvdlib"
  ];

  meta = with lib; {
    description = "Module to interact with the National Vulnerability CVE/CPE API";
    homepage = "https://github.com/Vehemont/nvdlib/";
    changelog = "https://github.com/vehemont/nvdlib/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -8406,6 +8406,8 @@ self: super: with self; {
  nvchecker = callPackage ../development/python-modules/nvchecker { };
  nvdlib = callPackage ../development/python-modules/nvdlib { };
  nvidia-ml-py = callPackage ../development/python-modules/nvidia-ml-py { };
  nsz = callPackage ../development/python-modules/nsz { };