htgoebel pushed a commit to branch wip-python-build-system in repository guix.
commit d20c7a6da02c9ec5cff21281183cfd6fb0e57d66 Author: Hartmut Goebel <[email protected]> Date: Sun Oct 23 20:25:22 2016 +0200 gnu: python-scikit-learn: Remove useless property "python2-variant". The Python 2 packages does not change the definition, thus the propery is useless. * gnu/packages/python.scm (python-scikit-learn): [properties]: Remove "python2-variant". (python2-scikit-learn): Remove now needless "strip-python2-variant". --- gnu/packages/python.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 6f49043..2bb2724 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -2869,11 +2869,10 @@ and is very extensible.") (description "Scikit-learn provides simple and efficient tools for data mining and data analysis.") - (license license:bsd-3) - (properties `((python2-variant . ,(delay python2-scikit-learn)))))) + (license license:bsd-3))) (define-public python2-scikit-learn - (package-with-python2 (strip-python2-variant python-scikit-learn))) + (package-with-python2 python-scikit-learn)) (define-public python-scikit-image (package
