diff options
author | Marius Bakke <marius@gnu.org> | 2021-12-04 12:22:11 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2021-12-05 14:02:10 +0100 |
commit | db5646d957895944007c1bb44fcd998ea392f168 (patch) | |
tree | e3812e8deec2bbb37e2ec5a065022b2dfbbbb5a7 /gnu/packages/maths.scm | |
parent | b507cc49abb5492f992aff08f0931365bd4ccd4e (diff) | |
download | guix-db5646d957895944007c1bb44fcd998ea392f168.tar guix-db5646d957895944007c1bb44fcd998ea392f168.tar.gz |
gnu: Adjust for python-build-system behavior change.
Commit cb72f9a773e0931ee3758c851d96007ded034e4c changed the semantics of
SITE-PACKAGES, but did not adjust all callers.
* gnu/packages/bioinformatics.scm (python-pyvcf)[arguments]: Adjust for
missing trailing slash.
* gnu/packages/maths.scm (nomad-optimizer)[arguments]: Likewise.
* gnu/packages/patchutils.scm (patchwork)[arguments]: Likewise.
Diffstat (limited to 'gnu/packages/maths.scm')
-rw-r--r-- | gnu/packages/maths.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 14aecb955d..3ff3c14bc8 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -2009,7 +2009,7 @@ interfaces.") (lambda* (#:key inputs outputs #:allow-other-keys) (delete-file (string-append (site-packages inputs outputs) - "PyNomad-0.0.0-py" + "/PyNomad-0.0.0-py" (python-version (assoc-ref inputs "python")) ".egg-info")) #t))))) |