python310Packages.pyxdg: 0.27 -> 0.28

This commit is contained in:
Sandro Jäckel 2022-08-25 23:53:27 +02:00
parent 857efbb889
commit a88df802c0
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -5,24 +5,25 @@
buildPythonPackage rec {
pname = "pyxdg";
version = "0.27";
version = "0.28";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "xdg";
repo = pname;
rev = "rel-${version}";
sha256 = "1dg826vrc7ifkk4lnf648h61cqfamaqmngkn9hgmxnf9gqmkbn0k";
sha256 = "sha256-TrFQzfkXabmfpGYwhxD1UVY1F645KycfSPPrMJFAe+0=";
};
# Tests failed (errors=4, failures=4) on NixOS
doCheck = false;
pythonImportsCheck = [ "xdg" ];
meta = with lib; {
homepage = "http://freedesktop.org/wiki/Software/pyxdg";
description = "Contains implementations of freedesktop.org standards";
license = licenses.lgpl2;
maintainers = with maintainers; [ domenkozar ];
};
}