From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: Re: [PATCH] gnu: Add new package definitions Date: Tue, 7 Feb 2017 17:24:24 +0100 Message-ID: <20170207172424.17e6813f@scratchpost.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54381) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cb8ZN-0007re-Hf for guix-devel@gnu.org; Tue, 07 Feb 2017 11:24:42 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cb8ZK-00089b-4t for guix-devel@gnu.org; Tue, 07 Feb 2017 11:24:41 -0500 Received: from dd1012.kasserver.com ([85.13.128.8]:40138) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cb8ZJ-00087N-Uq for guix-devel@gnu.org; Tue, 07 Feb 2017 11:24:38 -0500 In-Reply-To: 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" To: Frederick Muriithi Cc: guix-devel@gnu.org Hi, + (name "python-pycosat") + (version "0.6.1") + (source + (origin + (method url-fetch) + (uri (string-append + "https://pypi.python.org/packages/76/0f/16edae7bc75b79376f2c260b7a459829785f" + "08e463ecf74a8ccdef62dd4a/pycosat-" + version + ".tar.gz")) Please use (uri (pypi-uri "pycosat" version)). Or does it fail? + (name "python-ruamel.ordereddict") + (version "0.4.9") + (source + (origin + (method url-fetch) + (uri (string-append + "https://pypi.python.org/packages/b1/17/97868578071068fe7d115672b52624d421ff" + "24e5e802f65d6bf3ea184e8f/ruamel.ordereddict-" + version + ".tar.gz")) pypi-uri + (sha256 + (base32 + "1xmkl8v9l9inm2pyxgc1fm5005yxm7fkd5gv74q7lj1iy5qc8n3h")))) + (build-system python-build-system) + (arguments + `(#:python ,python-2)) Why does python-ruamel.ordereddict use python-2? (as opposed to python2-ruamel.ordereddict using python-2 and python-ruamel.ordereddict using python)