gnu: gnome-control-center: Update to 3.32.2.
[jackhill/guix/guix.git] / gnu / packages / patches / python-slugify-depend-on-unidecode.patch
CommitLineData
6543bc80
PL
1diff --git a/setup.py b/setup.py
2index 4800173..6bdd77f 100755
3--- a/setup.py
4+++ b/setup.py
5@@ -14,8 +14,7 @@ url = 'https://github.com/un33k/python-slugify'
6 author = 'Val Neekman'
7 author_email = 'info@neekware.com'
8 license = 'MIT'
aa686627
TGR
9-install_requires = ['text-unidecode>=1.3']
10-extras_require = {'unidecode': ['Unidecode>=1.1.1']}
6543bc80
PL
11+install_requires = ['Unidecode']
12
13 classifiers = [
14 'Development Status :: 5 - Production/Stable',
15@@ -67,7 +66,6 @@ setup(
16 author_email=author_email,
17 packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
18 install_requires=install_requires,
19- extras_require=extras_require,
20 classifiers=classifiers,
21 entry_points={'console_scripts': ['slugify=slugify.slugify:main']},
22 )