python310Packages.pythonfinder: 1.2.10 -> 1.3.1 (#190349)

This commit is contained in:
R. RyanTM 2022-09-14 08:14:04 -07:00 committed by GitHub
parent 6987a08e22
commit f1df680d14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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