diff options
author | Arun Isaac | 2022-06-14 19:12:17 +0530 |
---|---|---|
committer | Arun Isaac | 2022-06-14 19:14:11 +0530 |
commit | 98f6608dfd2e6c701f1260d6666ad88114045560 (patch) | |
tree | 68d74f0b190246c9d49ee8e9edf6f4f60f4fe7d1 /gn/packages | |
parent | 7102eccf445f087218b3dc797c9162b1f9166fde (diff) | |
download | guix-bioinformatics-98f6608dfd2e6c701f1260d6666ad88114045560.tar.gz |
gn: genenetwork3: Use upstream python-pingouin.
* gn/packages/genenetwork.scm (python-seaborn-without-tests,
python-pingouin-with-working-python-seaborn): Delete variables.
(genenetwork3)[propagated-inputs]: Replace
python-pingouin-with-working-python-seaborn with upstream
python-pingouin.
Diffstat (limited to 'gn/packages')
-rw-r--r-- | gn/packages/genenetwork.scm | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/gn/packages/genenetwork.scm b/gn/packages/genenetwork.scm index fff2bd7..714cca3 100644 --- a/gn/packages/genenetwork.scm +++ b/gn/packages/genenetwork.scm @@ -98,22 +98,6 @@ (description "Reimplementation of genenetwork/QTLReaper in Rust") (license #f)))) -;; Tests on the upstream python-seaborn package are broken. So, we -;; create this temporary workaround. -(define python-seaborn-without-tests - (package - (inherit python-seaborn) - (arguments - (substitute-keyword-arguments (package-arguments python-seaborn) - ((#:tests? _ #f) #f))))) - -(define python-pingouin-with-working-python-seaborn - (package - (inherit python-pingouin) - (propagated-inputs - `(("python-seaborn" ,python-seaborn-without-tests) - ,@(alist-delete "python-seaborn" (package-propagated-inputs python-pingouin)))))) - (define-public genenetwork3 (let ((commit "c2a6570a3dc2a9ae092b6a8273e7c6c0904dc1e1")) (package @@ -148,7 +132,7 @@ python-mysqlclient python-numpy python-pandas - python-pingouin-with-working-python-seaborn + python-pingouin python-plotly python-redis python-requests |