diff options
author | Franz Geffke <m@f-a.nz> | 2025-04-22 17:03:54 +0100 |
---|---|---|
committer | Franz Geffke <m@f-a.nz> | 2025-04-22 17:03:54 +0100 |
commit | 8b88e270e676eb77462e33d72a6c9416fe6c81bf (patch) | |
tree | 02d1af67318bdbfeb0a3c1ea0b46a5463389fccc | |
parent | 4442bab0155d3d2e00f8b079311663728eda7b8a (diff) |
px: Remove python-shortuuid
-rw-r--r-- | px/packages/device.scm | 2 | ||||
-rw-r--r-- | px/packages/python-xyz.scm | 21 |
2 files changed, 1 insertions, 22 deletions
diff --git a/px/packages/device.scm b/px/packages/device.scm index bcb4233..3539efd 100644 --- a/px/packages/device.scm +++ b/px/packages/device.scm @@ -94,7 +94,7 @@ (propagated-inputs `(("python-requests" ,python-requests) ("python-pycryptodomex" ,python-pycryptodomex) ("python-pyyaml" ,python-pyyaml) - ("python-shortuuid" ,python-shortuuid-v1) + ("python-shortuuid" ,python-shortuuid) ("python-appdirs" ,python-appdirs) ("python-psutil" ,python-psutil) ("python-joserfc", python-joserfc))) diff --git a/px/packages/python-xyz.scm b/px/packages/python-xyz.scm index da84bb6..7c45cf4 100644 --- a/px/packages/python-xyz.scm +++ b/px/packages/python-xyz.scm @@ -246,27 +246,6 @@ It give you an easy way to pass from raw mail to Python object that you can use in your code.") (license license:asl2.0))) -(define-public python-shortuuid-v1 - (package - (inherit python-shortuuid) - (name "python-shortuuid") - (version "1.0.11") - (source - (origin - (method url-fetch) - (uri (pypi-uri "shortuuid" version)) - (sha256 - (base32 "12gph4sgmhzqp5pzrm8gxxkcni9pa4x1nl5i9j75m08lb5hz4xgw")))) - (build-system python-build-system) - (native-inputs (list python-pep8 python-django)) - (home-page "https://github.com/skorokithakis/shortuuid") - (synopsis "Generator library for concise, unambiguous and URL-safe UUIDs") - (description - "@code{shortuuid} is a Python library for generating concise, unambiguous -and URL-safe UUIDs. UUIDs are generated using the built-in Python @code{uuid} -module and then similar looking characters are removed.") - (license license:bsd-3))) - (define-public python-exitstatus (package (name "python-exitstatus") |