From c5a8653641595e549369a9ff008194a4a749f98e Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Tue, 15 Feb 2022 09:07:15 +0100 Subject: [PATCH v3 1/2] gnu: Add python-xdg. * gnu/packages/python-xyz.scm (python-xdg): New variable. diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index feab9c7b50..d95fc12465 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -14511,6 +14511,23 @@ (define-public python-pyfiglet in pure Python.") (license license:expat))) +(define-public python-xdg + (package + (name "python-xdg") + (version "5.1.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "xdg" version)) + (sha256 + (base32 "0v6hmhjqlc6km284lr14kc4h5rl6xva231q1lsr8hq7crhk9yqda")))) + (build-system python-build-system) + (home-page "https://github.com/srstevenson/xdg") + (synopsis "Implementation of the XDG Base Directory Specification") + (description "This package provides implementation of the XDG Base Directory +Specification.") + (license license:isc))) + (define-public python-xdo (package (name "python-xdo") -- 2.34.0