Merge pull request #188329 from SuperSandro2000/python310Packages.pyxdg
This commit is contained in:
commit
d705f85f8e
1 changed files with 4 additions and 3 deletions
|
@ -5,24 +5,25 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pyxdg";
|
pname = "pyxdg";
|
||||||
version = "0.27";
|
version = "0.28";
|
||||||
|
|
||||||
src = fetchFromGitLab {
|
src = fetchFromGitLab {
|
||||||
domain = "gitlab.freedesktop.org";
|
domain = "gitlab.freedesktop.org";
|
||||||
owner = "xdg";
|
owner = "xdg";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "rel-${version}";
|
rev = "rel-${version}";
|
||||||
sha256 = "1dg826vrc7ifkk4lnf648h61cqfamaqmngkn9hgmxnf9gqmkbn0k";
|
sha256 = "sha256-TrFQzfkXabmfpGYwhxD1UVY1F645KycfSPPrMJFAe+0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Tests failed (errors=4, failures=4) on NixOS
|
# Tests failed (errors=4, failures=4) on NixOS
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "xdg" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "http://freedesktop.org/wiki/Software/pyxdg";
|
homepage = "http://freedesktop.org/wiki/Software/pyxdg";
|
||||||
description = "Contains implementations of freedesktop.org standards";
|
description = "Contains implementations of freedesktop.org standards";
|
||||||
license = licenses.lgpl2;
|
license = licenses.lgpl2;
|
||||||
maintainers = with maintainers; [ domenkozar ];
|
maintainers = with maintainers; [ domenkozar ];
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue