From 16fbc38f13e435b4e3e1a37d706e64e05bad4691 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Tue, 10 Nov 2015 23:09:24 -0500 Subject: [PATCH] patch build to use setuptools --- setup.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c6d57a6..27bf260 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,12 @@ # http://opensource.org/licenses/BSD-3-Clause import os import sys -from distutils.core import setup + +try: + from setuptools import setup +except ImportError: + from distutils.core import setup + # a simple import wouldn't work if we moved towards a package with __init__ from _version import __version__ -- 2.6.2 tion value='koszko' selected='selected'>koszko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/guix-shell.sh
t test to latest 'opam->guix-package' changes....
AgeCommit message (Expand)Author
2022-02-18profiles: 'profile-derivation' rejects unsupported packages....Ludovic Courtès
2021-12-10Merge remote-tracking branch 'signed/master' into core-updatesMathieu Othacehe
2021-12-10shell: When using '-D -f', '-D' has no effect on remaining packages....Ludovic Courtès
2021-11-18shell: Adjust test to expect C_INCLUDE_PATH, not CPATH....Ludovic Courtès
2021-10-30shell: Error out when an unauthorized guix.scm/manifest.scm is found....Ludovic Courtès
2021-10-25shell: By default load the local 'manifest.scm' or 'guix.scm' file....Ludovic Courtès
2021-10-25Add 'guix shell'....Ludovic Courtès
Ludovic Courtès
2020-12-08guix: opam: Pass default repository to recursive importer....Julien Lepiller
2020-10-02tests: opam: Test additional syntax....Julien Lepiller
2020-10-02tests: opam: Factorize tests....Julien Lepiller