Files
nixpkgs/pkgs/development/python-modules/hurry-filesize/use-pep-420-implicit-namespace-package.patch
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

25 lines
688 B
Diff

diff --git a/setup.py b/setup.py
index 9ec6f2e..607b680 100644
--- a/setup.py
+++ b/setup.py
@@ -29,7 +29,6 @@ setup(
license='ZPL 2.1',
packages=find_packages('src'),
package_dir= {'':'src'},
- namespace_packages=['hurry'],
include_package_data=True,
zip_safe=False,
install_requires=[
diff --git a/src/hurry/__init__.py b/src/hurry/__init__.py
index 2e2033b..e69de29 100644
--- a/src/hurry/__init__.py
+++ b/src/hurry/__init__.py
@@ -1,7 +0,0 @@
-# this is a namespace package
-try:
- import pkg_resources
- pkg_resources.declare_namespace(__name__)
-except ImportError:
- import pkgutil
- __path__ = pkgutil.extend_path(__path__, __name__)