python3Packages.findpython: 0.6.3 -> 0.7.0

https://github.com/frostming/findpython/releases/tag/0.7.0

This commit was automatically generated using update-python-libraries.

Changed files
+9 -7
pkgs
development
python-modules
findpython
+9 -7
pkgs/development/python-modules/findpython/default.nix
···
# runtime
packaging,
+
platformdirs,
# tests
pytestCheckHook,
···
let
pname = "findpython";
-
version = "0.6.3";
+
version = "0.7.0";
in
buildPythonPackage {
inherit pname version;
-
format = "pyproject";
-
-
disabled = pythonOlder "3.7";
+
pyproject = true;
src = fetchPypi {
inherit pname version;
-
hash = "sha256-WGPqVVVtiq3Gk0gaFKxPNiSVJxnvwcVZGrsLSp6WXJQ=";
+
hash = "sha256-izFkfHY1J3mjwaCAZpm2jmp73AtcLd2a8qB6DUDGc9w=";
};
-
nativeBuildInputs = [ pdm-backend ];
+
build-system = [ pdm-backend ];
-
propagatedBuildInputs = [ packaging ];
+
dependencies = [
+
packaging
+
platformdirs
+
];
nativeCheckInputs = [ pytestCheckHook ];