lol

python313Packages.deprecated: 1.2.15 -> 1.2.18

https://github.com/tantale/deprecated/compare/refs/tags/v1.2.15...v1.2.18

+2 -24
+2 -7
pkgs/development/python-modules/deprecated/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "deprecated"; 14 - version = "1.2.15"; 14 + version = "1.2.18"; 15 15 pyproject = true; 16 16 17 17 outputs = [ ··· 23 23 owner = "tantale"; 24 24 repo = "deprecated"; 25 25 tag = "v${version}"; 26 - hash = "sha256-slMPL2L0TZ7L19nfHMOM4jQlkJ7HIyyDPlfC9yhhd98="; 26 + hash = "sha256-gx5D1KAPELKfb2U93lvuztv3Ea3V+PshcfshIS6uwCo="; 27 27 }; 28 - 29 - patches = [ 30 - # https://github.com/laurent-laporte-pro/deprecated/pull/79 31 - ./sphinx8-compat.patch 32 - ]; 33 28 34 29 build-system = [ setuptools ]; 35 30
-17
pkgs/development/python-modules/deprecated/sphinx8-compat.patch
··· 1 - diff --git a/docs/source/conf.py b/docs/source/conf.py 2 - index bed3b95..bd81db5 100644 3 - --- a/docs/source/conf.py 4 - +++ b/docs/source/conf.py 5 - @@ -173,9 +173,9 @@ texinfo_documents = [ 6 - 7 - # Example configuration for intersphinx: refer to the Python standard library. 8 - intersphinx_mapping = { 9 - - 'https://docs.python.org/3/': None, 10 - - 'https://wrapt.readthedocs.io/en/latest/': None, 11 - - 'http://flask.pocoo.org/docs/1.0/': None, 12 - + 'python': ('https://docs.python.org/3/', None), 13 - + 'wrapt': ('https://wrapt.readthedocs.io/en/latest/', None), 14 - + 'flask': ('http://flask.pocoo.org/docs/1.0/', None), 15 - 'django': ('https://docs.djangoproject.com/en/2.1/', 'https://docs.djangoproject.com/en/2.1/_objects/'), 16 - } 17 -