diff options
author | msglm <msglm@techchud.xyz> | 2024-03-27 14:45:46 -0500 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2024-03-27 14:45:46 -0500 |
commit | 674f2f620aa926d4b1b1b1c29477c21d985fa60e (patch) | |
tree | f064dc0c13169f9d35e2a0f81c219bde8f53fe31 /rclip.scm | |
parent | 0929cd80303bbc661912567235d18e656c8038b0 (diff) | |
download | guix-msglm-674f2f620aa926d4b1b1b1c29477c21d985fa60e.tar.gz guix-msglm-674f2f620aa926d4b1b1b1c29477c21d985fa60e.tar.bz2 guix-msglm-674f2f620aa926d4b1b1b1c29477c21d985fa60e.zip |
rclip uses the proper poetry version now
Diffstat (limited to 'rclip.scm')
-rw-r--r-- | rclip.scm | 96 |
1 files changed, 22 insertions, 74 deletions
@@ -22,23 +22,6 @@ #:use-module ((guix licenses) :prefix license:) ) -(define-public python-poetry-core-1.9.0 - (package - (name "python-poetry-core") - (version "1.9.0") - (source - (origin - (method url-fetch) - (uri (pypi-uri "poetry_core" version)) - (sha256 - (base32 "18imz7hm6a6n94r2kyaw5rjvs8dk22szwdagx0p5gap8x80l0yps")))) - (build-system pyproject-build-system) - (native-inputs (list poetry-1.3)) - (home-page "https://github.com/python-poetry/poetry-core") - (synopsis "Poetry PEP 517 Build Backend") - (description "Poetry PEP 517 Build Backend") - (license license:expat))) - (define-public poetry-plugin-export (package (name "poetry-plugin-export") @@ -56,6 +39,27 @@ (description "Poetry plugin to export the dependencies to various formats") (license license:expat))) +(define-public python-poetry-core-1.9.0 + (package + (inherit python-poetry-core) + (name "python-poetry-core") + (version "1.9.0") + )) + +(define-public poetry-1.8.2 + (package + (inherit poetry) + (name "poetry") + (version "1.8.2") + )) + +(define-public poetry-1.3 + (package + (inherit poetry) + (name "poetry") + (version "1.3") + )) + (define-public python-installer (package (name "python-installer") @@ -74,62 +78,6 @@ "This package provides a library for installing Python wheels.") (license #f))) -(define-public poetry-1.8.2 - (package - (inherit poetry) - (name "poetry") - (version "1.8.2") - )) - -(define-public poetry-1.3 - (package - (inherit poetry) - (name "poetry") - (version "1.3") - )) - -;(define-public poetry-1.8.2 -; (package -; (name "poetry") -; (version "1.8.2") -; (source -; (origin -; (method url-fetch) -; (uri (pypi-uri "poetry" version)) -; (sha256 -; (base32 "0wyb55x6izlhka23zlqqrh23f1f62d7kl7q2w71lfihh70wfpk29")))) -; (build-system pyproject-build-system) -; (propagated-inputs (list -; python-cachecontrol -; python-cleo -; python-crashtest -; python-dulwich -; python-fastjsonschema -; python-importlib-metadata -; python-installer -; python-keyring -; python-packaging -; python-pexpect -; python-pkginfo -; python-platformdirs -; python-poetry-core -; poetry-plugin-export -; python-pyproject-hooks -; python-requests -; python-requests-toolbelt -; python-shellingham -; python-tomli -; python-tomlkit -; python-trove-classifiers -; python-virtualenv -; python-xattr)) -; (home-page "https://python-poetry.org/") -; (synopsis "Python dependency management and packaging made easy.") -; (description "Python dependency management and packaging made easy.") -; (license license:expat))) - - - (define-public python-rclip (package (name "rclip") @@ -147,7 +95,7 @@ python-pytorch python-torchvision python-tqdm - python-poetry-core + python-poetry-core-1.9.0 python-ftfy ;poetry-1.8.2 )) |