at 22.05-pre 636 B view raw
1{ lib 2, buildPythonPackage 3, fetchFromGitLab 4}: 5 6buildPythonPackage rec { 7 pname = "pyxdg"; 8 version = "0.27"; 9 10 src = fetchFromGitLab { 11 domain = "gitlab.freedesktop.org"; 12 owner = "xdg"; 13 repo = pname; 14 rev = "rel-${version}"; 15 sha256 = "1dg826vrc7ifkk4lnf648h61cqfamaqmngkn9hgmxnf9gqmkbn0k"; 16 }; 17 18 # Tests failed (errors=4, failures=4) on NixOS 19 doCheck = false; 20 21 meta = with lib; { 22 homepage = "http://freedesktop.org/wiki/Software/pyxdg"; 23 description = "Contains implementations of freedesktop.org standards"; 24 license = licenses.lgpl2; 25 maintainers = with maintainers; [ domenkozar ]; 26 }; 27 28}