1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-25 10:36:36 +03:00
nixpkgs/pkgs/development/python-modules/pyxdg/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
636 B
Nix
Raw Normal View History

2020-10-18 17:52:38 -07:00
{ lib
, buildPythonPackage
2020-10-18 17:52:38 -07:00
, fetchFromGitLab
}:
buildPythonPackage rec {
pname = "pyxdg";
2020-10-18 17:52:38 -07:00
version = "0.27";
2020-10-18 17:52:38 -07:00
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "xdg";
repo = pname;
rev = "rel-${version}";
sha256 = "1dg826vrc7ifkk4lnf648h61cqfamaqmngkn9hgmxnf9gqmkbn0k";
};
2020-10-18 17:52:38 -07:00
# Tests failed (errors=4, failures=4) on NixOS
doCheck = false;
2020-10-18 17:52:38 -07:00
meta = with lib; {
homepage = "http://freedesktop.org/wiki/Software/pyxdg";
description = "Contains implementations of freedesktop.org standards";
license = licenses.lgpl2;
maintainers = with maintainers; [ domenkozar ];
};
}