diff options
author | Sarah Morgensen <iskarian@mgsn.dev> | 2021-07-26 19:56:30 -0700 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-01-10 11:44:47 -0500 |
commit | 85e43978a4b237dcd11f25a5ddc16d00d7611106 (patch) | |
tree | fda056f81d735ad10c19d985bf25924669173e0f /gnu | |
parent | 0f71f55a60c94efe5c109233db6c92dbfba2bf82 (diff) | |
download | guix-85e43978a4b237dcd11f25a5ddc16d00d7611106.tar.gz |
gnu: python-biom-format: Remove obsolete phase.
* gnu/packages/bioinformatics.scm (python-biom-format)[arguments] <#:phases>: Remove 'make-files-writable phase. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 025c545852..aac20c8ea0 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -1075,13 +1075,7 @@ Python.") (("^(.+)def test_from_hdf5_issue_731" m indent) (string-append indent "@npt.dec.skipif(True, msg='Guix')\n" - m))))) - - (add-before 'reset-gzip-timestamps 'make-files-writable - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (for-each (lambda (file) (chmod file #o644)) - (find-files out "\\.gz")))))))) + m)))))))) (propagated-inputs (list python-anndata python-numpy |