Commit 2ec1661f authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.pyexploitdb: refactor

parent f8ef4b70
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -5,12 +5,13 @@
, pytestCheckHook
, pythonOlder
, requests
, setuptools
}:

buildPythonPackage rec {
  pname = "pyexploitdb";
  version = "0.2.16";
  format = "setuptools";
  pyproject = true;

  disabled = pythonOlder "3.7";

@@ -20,7 +21,11 @@ buildPythonPackage rec {
    hash = "sha256-PP9dR8Jl4eWsky3vO9Pgraw0plik/5aWvmOAEc2/Qpo=";
  };

  propagatedBuildInputs = [
  build-system = [
    setuptools
  ];

  dependencies = [
    gitpython
    requests
  ];
@@ -35,7 +40,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Library to fetch the most recent exploit-database";
    homepage = "https://github.com/GoVanguard/pyExploitDb";
    changelog = "https://github.com/GoVanguard/pyExploitDb/blob/master/Changelog.txt";
    changelog = "https://github.com/GoVanguard/pyExploitDb/blob/master/ChangeLog.md";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ fab ];
  };