diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-04-17 10:42:41 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-04-17 10:42:41 +0300 |
commit | c135577dbf916bcde7e90683bff82dd505b571f7 (patch) | |
tree | e9c56200bb679c1cf27bee7a423564965bfac343 | |
parent | b9dd2a2fb7dda8b2b9686e8e4bf5cca19514a08d (diff) |
gnu: khal: Move propagated inputs to inputs.
As a package one would install we can rely on wrapping the package and
not propagating inputs to make it work correctly.
* gnu/packages/calendar.scm (khal)[propagated-inputs]: Move all python
packages...
[inputs]: ... to here.
-rw-r--r-- | gnu/packages/calendar.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/calendar.scm b/gnu/packages/calendar.scm index 291221bc26..81b2b436c1 100644 --- a/gnu/packages/calendar.scm +++ b/gnu/packages/calendar.scm @@ -223,9 +223,8 @@ data units.") ("python-sphinxcontrib-newsfeed" ,python-sphinxcontrib-newsfeed) ("python-sphinx" ,python-sphinx))) (inputs - `(("sqlite" ,sqlite))) - (propagated-inputs - `(("python-configobj" ,python-configobj) + `(("sqlite" ,sqlite) + ("python-configobj" ,python-configobj) ("python-dateutil" ,python-dateutil) ("python-icalendar" ,python-icalendar) ("python-tzlocal" ,python-tzlocal) |