mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
aba4055156
Diff: https://github.com/Vehemont/nvdlib/compare/refs/tags/v0.7.6...v0.7.7 Changelog: https://github.com/vehemont/nvdlib/releases/tag/v0.7.7
45 lines
925 B
Nix
45 lines
925 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
requests,
|
|
responses,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nvdlib";
|
|
version = "0.7.7";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Vehemont";
|
|
repo = "nvdlib";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-/UmBNdch9yM6yCVcJbzsCx6om4XlqQa40X/fgEYgRuI=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|