diff options
author | Frederick Muriuki Muriithi | 2025-10-06 09:54:09 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-10-06 11:30:12 -0500 |
commit | a3926a5c29f1a6360e2ad0fd5bf0d6f009090406 (patch) | |
tree | 6650d9989306684ef001d2c2a868eaafd6708e9e /gn/packages/patches/python-unittest2-remove-argparse.patch | |
parent | d9a10dd3e6f370f068e9c7a96318546d550a3731 (diff) | |
download | guix-bioinformatics-a3926a5c29f1a6360e2ad0fd5bf0d6f009090406.tar.gz |
python-unittest2: Copy deleted package over from guix mainline
Certain packages in guix-bioinformatics have `python-unittest2` as a dependency, but the package was deleted from guix mainline. This commit copies the deleted package definition over to guix-bioinformatics and includes the module where the package is used.
Diffstat (limited to 'gn/packages/patches/python-unittest2-remove-argparse.patch')
-rw-r--r-- | gn/packages/patches/python-unittest2-remove-argparse.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gn/packages/patches/python-unittest2-remove-argparse.patch b/gn/packages/patches/python-unittest2-remove-argparse.patch new file mode 100644 index 0000000..c967387 --- /dev/null +++ b/gn/packages/patches/python-unittest2-remove-argparse.patch @@ -0,0 +1,11 @@ +--- a/setup.py 2017-09-12 01:22:06.273997788 +0200 ++++ b/setup.py 2017-09-12 01:22:14.297918757 +0200 +@@ -57,7 +57,7 @@ + # Both install and setup requires - because we read VERSION from within the + # package, and the package also exports all the APIs. + # six for compat helpers +-REQUIRES = ['argparse', 'six>=1.4', 'traceback2'], ++REQUIRES = ['six>=1.4', 'traceback2'], + + params = dict( + name=NAME, |