From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:48478) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iLUmP-0002Na-Io for guix-patches@gnu.org; Fri, 18 Oct 2019 12:07:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iLUmM-0005rI-Pi for guix-patches@gnu.org; Fri, 18 Oct 2019 12:07:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:42642) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iLUmM-0005r4-CX for guix-patches@gnu.org; Fri, 18 Oct 2019 12:07:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iLUmM-0002GL-4W for guix-patches@gnu.org; Fri, 18 Oct 2019 12:07:02 -0400 Subject: [bug#37704] [PATCH v2 9/9] gnu: Add python-poetry. References: <20191011163447.utqgomsalw7r6nul@rafflesia> In-Reply-To: <20191011163447.utqgomsalw7r6nul@rafflesia> Resent-Message-ID: Date: Fri, 18 Oct 2019 18:06:28 +0200 From: Tanguy Le Carrour Message-ID: <20191018160628.4eipiqeqntuojxme@rafflesia> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="27j76bn53vetldlx" Content-Disposition: inline List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 37704@debbugs.gnu.org --27j76bn53vetldlx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline As suggested by Oleg [1], I've changed the names of the package and the public variable. [1]: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=37613 --27j76bn53vetldlx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline >From d4f5faa7e2c4ce07da08911e70e5db641dc4df27 Mon Sep 17 00:00:00 2001 From: Tanguy Le Carrour Date: Wed, 9 Oct 2019 10:41:23 +0200 Subject: [PATCH v2 9/9] gnu: Add poetry. * gnu/packages/python-xyz.scm (poetry): New public variable. --- gnu/packages/python-xyz.scm | 46 +++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 3d51c63530..0c93591c3e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -10748,6 +10748,52 @@ powerful API: thread-safety; decorator syntax; support for memcached, redis, database, file, dict stores. Cachy supports python versions 2.7+ and 3.2+.") (license license:expat))) +(define-public poetry + (package + (name "poetry") + (version "0.12.17") + ;; Poetry can only be built from source with poetry. + (source + (origin + (method url-fetch) + (uri (pypi-uri "poetry" version)) + (sha256 + (base32 + "0gxwcd65qjmzqzppf53x51sic1rbcd9py6cdzx3aprppipimslvf")))) + (build-system python-build-system) + (arguments + `(#:tests? #f ;; Pypi does not have tests. + #:phases + (modify-phases %standard-phases + (replace 'build + (lambda _ + ;; Bug in poetry https://github.com/sdispater/poetry/issues/866. + (invoke "sed" "-i" "-e" "s/from distutils.core/from setuptools/" "setup.py") + #t))))) + (propagated-inputs + `(("python-cachecontrol" ,python-cachecontrol) + ("python-cachy" ,python-cachy) + ("python-cleo" ,python-cleo) + ("python-glob2" ,python-glob2) + ("python-html5lib" ,python-html5lib) + ("python-jsonschema" ,python-jsonschema) + ("python-msgpack" ,python-msgpack) + ("python-pathlib2" ,python-pathlib2) + ("python-pkginfo" ,python-pkginfo) + ("python-pyparsing" ,python-pyparsing) + ("python-pyrsistent" ,python-pyrsistent) + ("python-requests" ,python-requests) + ("python-requests-toolbelt" ,python-requests-toolbelt) + ("python-shellingham" ,python-shellingham) + ("python-tomlkit" ,python-tomlkit) + ("python-virtualenv" ,python-virtualenv))) + (home-page "https://poetry.eustace.io/") + (synopsis "Python dependency management and packaging made easy") + (description "Poetry is a tool for dependency management and packaging +in Python. It allows you to declare the libraries your project depends on and +it will manage (install/update) them for you.") + (license license:expat))) + (define-public python-lazy-object-proxy (package (name "python-lazy-object-proxy") -- 2.23.0 --27j76bn53vetldlx--