python313Packages.deprecated: 1.2.15 -> 1.2.18

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

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