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