summaryrefslogtreecommitdiff
path: root/gnu/packages/python-build.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-12-31 10:42:17 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:22 +0100
commit4bd6db2080267dc4dbf254db09be3c1216b6fafc (patch)
tree1ca079b3ce05588474ad635961837fe06b5c94f8 /gnu/packages/python-build.scm
parentcc2083a785f34fa32647282bc12d0ab7ead932be (diff)
gnu: python-six: Move to (gnu packages python-build).
* gnu/packages/python-xyz.scm (python-six, python-six-bootstrap): Move from here… * gnu/packages/python-build.scm (python-six, python-six-bootstrap): …to here. * gnu/packages/linphone.scm: Adapt imported modules. * gnu/packages/mate.scm: Adapt imported modules. Change-Id: Iea0b78aa4adfdd68d863f674fd37997ad4c99485 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-build.scm')
-rw-r--r--gnu/packages/python-build.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 86e48d34a37..68977c61da8 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -908,6 +908,32 @@ them as the version argument or in a SCM managed file.")
908 (sha256 908 (sha256
909 (base32 "0mzgyyg1cgigkmlfm0iy44f2092zn8xc093ygn4a11jncss4lrqw")))))) 909 (base32 "0mzgyyg1cgigkmlfm0iy44f2092zn8xc093ygn4a11jncss4lrqw"))))))
910 910
911(define-public python-six
912 (package
913 (name "python-six")
914 (version "1.17.0")
915 (source
916 (origin
917 (method url-fetch)
918 (uri (pypi-uri "six" version))
919 (sha256
920 (base32 "109ajcsfhrz33lbwbb337w34crc3lb9rjnxrcpnbczlf8rfk6w7z"))))
921 (build-system pyproject-build-system)
922 (native-inputs
923 (list python-pytest-bootstrap
924 python-setuptools))
925 (home-page "https://pypi.org/project/six/")
926 (synopsis "Python 2 and 3 compatibility utilities")
927 (description
928 "Six is a Python 2 and 3 compatibility library. It provides utility
929functions for smoothing over the differences between the Python versions with
930the goal of writing Python code that is compatible on both Python versions.
931Six supports every Python version since 2.5. It is contained in only one
932Python file, so it can be easily copied into your project.")
933 (license license:x11)))
934
935(define-public python-six-bootstrap python-six)
936
911(define-public python-editables 937(define-public python-editables
912 (package 938 (package
913 (name "python-editables") 939 (name "python-editables")