From 5c466b5501ce7fe3180cf12490b9e1647e199cb6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 7 Oct 2025 17:06:52 +0000 Subject: [PATCH 1/2] python3Packages.pyexploitdb: 0.2.100 -> 0.2.101 --- pkgs/development/python-modules/pyexploitdb/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyexploitdb/default.nix b/pkgs/development/python-modules/pyexploitdb/default.nix index cc02c9efa926..b5923f2c8d72 100644 --- a/pkgs/development/python-modules/pyexploitdb/default.nix +++ b/pkgs/development/python-modules/pyexploitdb/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "pyexploitdb"; - version = "0.2.100"; + version = "0.2.101"; pyproject = true; disabled = pythonOlder "3.7"; @@ -18,7 +18,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "pyExploitDb"; inherit version; - hash = "sha256-z98mrmfIM96rb+PT25HzwkfFDgZ50wRw9eQlsD4yqik="; + hash = "sha256-ZiNFLX3L4Fc6fJxd2sUlF+tU2PL544fOu36niFN+aoM="; }; build-system = [ setuptools ]; From cda297b06ead5a1930ced0c987cbdc8fca266d2f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 8 Oct 2025 08:20:44 +0200 Subject: [PATCH 2/2] python313Packages.pyexploitdb: remove disabled Removed the restriction for Python versions older than 3.7. --- pkgs/development/python-modules/pyexploitdb/default.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/development/python-modules/pyexploitdb/default.nix b/pkgs/development/python-modules/pyexploitdb/default.nix index b5923f2c8d72..a6c09d40b976 100644 --- a/pkgs/development/python-modules/pyexploitdb/default.nix +++ b/pkgs/development/python-modules/pyexploitdb/default.nix @@ -3,7 +3,6 @@ buildPythonPackage, fetchPypi, gitpython, - pythonOlder, requests, setuptools, }: @@ -13,8 +12,6 @@ buildPythonPackage rec { version = "0.2.101"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchPypi { pname = "pyExploitDb"; inherit version;