pythonPackages.importlib-metadata: 6.6.0 -> 6.8.0

Also, add myself as maintainer.
This commit is contained in:
Anderson Torres 2023-07-07 23:48:50 -03:00
parent 4cb9db113d
commit e3d7757ca8

View File

@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "importlib-metadata";
version = "6.6.0";
version = "6.8.0";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -19,7 +19,7 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "importlib_metadata";
inherit version;
hash = "sha256-klAc35zGbr0+YS8bTwwHZd+kLw+jj/sxm2vYTdZ11wU=";
hash = "sha256-26zniS2MDErBrQlmYiMvgx1OZPTEVFvVMBaj6dRlR0M=";
};
nativeBuildInputs = [
@ -45,6 +45,6 @@ buildPythonPackage rec {
description = "Read metadata from Python packages";
homepage = "https://importlib-metadata.readthedocs.io/";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
maintainers = with maintainers; [ fab AndersonTorres ];
};
}