diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-15 22:56:51 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-19 20:12:12 -0400 |
commit | 66ffbaa409d7ec3901aa64706dcca51085973319 (patch) | |
tree | d85684bb196cb6f9174e249da4edbbcaaeb523c5 | |
parent | 21d6985a8b3c6e53aab648275dc27b72c7453437 (diff) |
gnu: python-flit-core-bootstrap: Update to 3.8.0.
* gnu/packages/python-build.scm (python-flit-core-bootstrap): Update to 3.8.0.
[home-page]: Update URL.
-rw-r--r-- | gnu/packages/python-build.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index d87f3034ef..de81894729 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -483,13 +483,13 @@ compatible build front-ends to build Poetry managed projects.") (define-public python-flit-core-bootstrap (package (name "python-flit-core-bootstrap") - (version "3.5.1") + (version "3.8.0") (source (origin (method url-fetch) (uri (pypi-uri "flit" version)) (sha256 - (base32 "04152qj46sqbnlrj7ch9p7svjrrlpzbk0qr39g2yr0s4f5vp6frf")))) + (base32 "0dz9sp2zlhkmk6sm5gapbbb30f7xq3n3jn5zxx5pkp25ppsaiwnh")))) (build-system python-build-system) (propagated-inputs (list python-toml)) @@ -514,7 +514,7 @@ compatible build front-ends to build Poetry managed projects.") ;; The sanity-check phase fails because flit depends on tomli at ;; run-time, but this core variant avoids it to avoid a cycle. (delete 'sanity-check)))) - (home-page "https://github.com/takluyver/flit") + (home-page "https://github.com/pypa/flit") (synopsis "Core package of the Flit Python build system") (description "This package provides @code{flit-core}, a PEP 517 build backend for packages using Flit. The only public interface is the API |