From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Circular dependencies in python modules Date: Tue, 20 Jan 2015 23:08:47 +0100 Message-ID: <20150120220847.GA7543@debian> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46804) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YDgym-0003Ce-3b for guix-devel@gnu.org; Tue, 20 Jan 2015 17:08:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YDgyi-0007sD-UX for guix-devel@gnu.org; Tue, 20 Jan 2015 17:08:56 -0500 Received: from mout.kundenserver.de ([212.227.17.24]:61479) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YDgyi-0007rz-KO for guix-devel@gnu.org; Tue, 20 Jan 2015 17:08:52 -0500 Content-Disposition: inline List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org Hello! To package zeitgeist, I need python2-rdflib. With python 3, there was no problem, but with python 2, there seems to be a dependency on sparqlwrapper: ... Installed /gnu/store/kxd0yf301yz53cp8lyn7acyha78sfcjk-python2-rdflib-4.1.2/lib/python2.7/site-packages/rdflib-4.1.2-py2.7.egg Processing dependencies for rdflib==4.1.2 Searching for SPARQLWrapper Reading https://pypi.python.org/simple/SPARQLWrapper/ Download error on https://pypi.python.org/simple/SPARQLWrapper/: [Errno -2] Name or service not known -- Some packages may not be found! Couldn't find index page for 'SPARQLWrapper' (maybe misspelled?) Scanning index of all packages (this may take a while) Reading https://pypi.python.org/simple/ Download error on https://pypi.python.org/simple/: [Errno -2] Name or service not known -- Some packages may not be found! No local packages or download links found for SPARQLWrapper error: Could not find suitable distribution for Requirement.parse('SPARQLWrapper') phase `install' failed after 1 seconds But sparqlwrapper depends on rdflib (I tried it out, and its web page also states this). How is this possible, and how is it solved? Andreas