summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pythonfinder
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2022-09-14 08:14:04 -0700
committerGitHub <noreply@github.com>2022-09-14 17:14:04 +0200
commitf1df680d14a56d4ecfa7c237c8352a4ab22dda23 (patch)
treef1be1ce785cf866b2f0cf5619d54f78f2cd4218f /pkgs/development/python-modules/pythonfinder
parent6987a08e22979ebf48f5073ab81c6a2d44a60a7a (diff)
python310Packages.pythonfinder: 1.2.10 -> 1.3.1 (#190349)
Diffstat (limited to 'pkgs/development/python-modules/pythonfinder')
-rw-r--r--pkgs/development/python-modules/pythonfinder/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/pythonfinder/default.nix b/pkgs/development/python-modules/pythonfinder/default.nix
index 9500a42a916f..64879d01969f 100644
--- a/pkgs/development/python-modules/pythonfinder/default.nix
+++ b/pkgs/development/python-modules/pythonfinder/default.nix
@@ -6,7 +6,6 @@
, attrs
, cached-property
, click
-, six
, packaging
, pytest-cov
, pytest-timeout
@@ -14,21 +13,20 @@
buildPythonPackage rec {
pname = "pythonfinder";
- version = "1.2.10";
+ version = "1.3.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "sarugaku";
repo = pname;
- rev = version;
- sha256 = "sha256-4a648wOh+ASeocevFVh/4Fkq0CEhkFbt+2mWVmb9Bhw=";
+ rev = "refs/tags/v${version}";
+ sha256 = "sha256-N/q9zi2SX38ivSpnjrx+bEzdR9cS2ivSgy42SR8cl+Q=";
};
propagatedBuildInputs = [
attrs
cached-property
click
- six
packaging
];