python311Packages.typing-extensions: 4.7.1 -> 4.8.0

https://github.com/python/typing_extensions/blob/4.8.0/CHANGELOG.md
This commit is contained in:
Martin Weinelt 2023-11-29 02:19:11 +01:00
parent ca6ecf0c66
commit 59f02031e9
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -2,21 +2,20 @@
, buildPythonPackage
, fetchPypi
, flit-core
, python
, pythonOlder
}:
buildPythonPackage rec {
pname = "typing-extensions";
version = "4.7.1";
format = "pyproject";
version = "4.8.0";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "typing_extensions";
inherit version;
hash = "sha256-t13cJk8LpWFdt7ohfa65lwGtKVNTxF+elZYzN87u/7I=";
hash = "sha256-345DOenLdzV1WMvbzsozwwNxTPhh0e7xXhBwBVrot+8=";
};
nativeBuildInputs = [