Files
nixpkgs/pkgs/development/python-modules/pyexploitdb/default.nix
Fabian Affolter cda297b06e python313Packages.pyexploitdb: remove disabled
Removed the restriction for Python versions older than 3.7.
2025-10-08 08:20:44 +02:00

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 ];
};
}