Drop SPARQLWrapper from the required install inputs under Python 2, as it creates a circular dependency. diff -u rdflib-4.1.2.alt/setup.py rdflib-4.1.2/setup.py --- rdflib-4.1.2.alt/setup.py 2014-03-04 12:40:26.000000000 +0100 +++ rdflib-4.1.2/setup.py 2015-01-23 21:52:59.000000000 +0100 @@ -52,7 +52,7 @@ kwargs['test_suite'] = "nose.collector" kwargs['install_requires'] = [ 'isodate', - 'pyparsing', 'SPARQLWrapper'] + 'pyparsing'] if sys.version_info[1]<7: # Python 2.6 kwargs['install_requires'].append('ordereddict') idden' name='id' value='8da6dfb0bbb00c330bfa053741f5a58b66219463'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/installer/substitutes.scm
AgeCommit message (Expand)Author
2020-12-11install: Discover local substitute servers....* gnu/installer/substitutes.scm: New file. * gnu/installer/newt/substitutes.scm: New file. * gnu/local.mk (INSTALLER_MODULES): Add them. * po/guix/POTFILES.in: Add gnu/installer/newt/substitutes.scm. * gnu/installer/proxy.scm (with-silent-shepherd): Move to ... * gnu/installer/utils.scm: ... here. * gnu/installer/record.scm (<installer>)[substitutes-page]: New field. * gnu/installer/newt.scm (substitutes-page): New procedure, (newt-installer): register it. * gnu/installer.scm (installer-steps): Add "substitutes-page" step. * gnu/system/install.scm (%installation-services): Add avahi-service-type and enable substitute server discover in guix-service-type. [<name-service-switch>]: Set it to %mdns-host-lookup-nss. Mathieu Othacehe