41 lines
817 B
Nix
41 lines
817 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
gitpython,
|
|
requests,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyexploitdb";
|
|
version = "0.2.101";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "pyExploitDb";
|
|
inherit version;
|
|
hash = "sha256-ZiNFLX3L4Fc6fJxd2sUlF+tU2PL544fOu36niFN+aoM=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
gitpython
|
|
requests
|
|
];
|
|
|
|
# Module has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "pyExploitDb" ];
|
|
|
|
meta = with lib; {
|
|
description = "Library to fetch the most recent exploit-database";
|
|
homepage = "https://github.com/Hackman238/pyExploitDb";
|
|
changelog = "https://github.com/Hackman238/pyExploitDb/blob/master/ChangeLog.md";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|