mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
konfig: remove obsolete argparse dependency; fixes build failure
This commit is contained in:
parent
1844dfc491
commit
5acb1b2d0f
1 changed files with 17 additions and 1 deletions
|
@ -12026,7 +12026,23 @@ in {
|
|||
sha256 = "1h780fbrv275dcik4cs3rincza805z6q726b48r4a0qmh5d8160c";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ configparser argparse six ];
|
||||
propagatedBuildInputs = with self; [ configparser six ];
|
||||
|
||||
patches = [ (pkgs.writeText "konfig.patch" ''
|
||||
diff --git a/setup.py b/setup.py
|
||||
index 96fd858..bb4db06 100644
|
||||
--- a/setup.py
|
||||
+++ b/setup.py
|
||||
@@ -20,7 +20,7 @@ setup(name='konfig',
|
||||
author_email="tarek@mozilla.com",
|
||||
include_package_data=True,
|
||||
install_requires = [
|
||||
- 'configparser', 'argparse', 'six'
|
||||
+ 'configparser', 'six'
|
||||
],
|
||||
zip_safe=False,
|
||||
classifiers=classifiers,
|
||||
'') ];
|
||||
|
||||
meta = {
|
||||
description = "Yet Another Config Parser";
|
||||
|
|
Loading…
Reference in a new issue