evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / pyxdg / default.nix
blobb7ec762f7d6b588a2c61d9683d9c82948fd5bcf5
2   lib,
3   buildPythonPackage,
4   fetchFromGitLab,
5 }:
7 buildPythonPackage rec {
8   pname = "pyxdg";
9   version = "0.28";
10   format = "setuptools";
12   src = fetchFromGitLab {
13     domain = "gitlab.freedesktop.org";
14     owner = "xdg";
15     repo = pname;
16     rev = "rel-${version}";
17     hash = "sha256-TrFQzfkXabmfpGYwhxD1UVY1F645KycfSPPrMJFAe+0=";
18   };
20   # Tests failed (errors=4, failures=4) on NixOS
21   doCheck = false;
23   pythonImportsCheck = [ "xdg" ];
25   meta = with lib; {
26     homepage = "http://freedesktop.org/wiki/Software/pyxdg";
27     description = "Contains implementations of freedesktop.org standards";
28     license = licenses.lgpl2;
29     maintainers = with maintainers; [ domenkozar ];
30   };