1{ stdenv
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "pyxdg";
8 version = "0.26";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "fe2928d3f532ed32b39c32a482b54136fe766d19936afc96c8f00645f9da1a06";
13 };
14
15 # error: invalid command 'test'
16 doCheck = false;
17
18 meta = with stdenv.lib; {
19 homepage = http://freedesktop.org/wiki/Software/pyxdg;
20 description = "Contains implementations of freedesktop.org standards";
21 license = licenses.lgpl2;
22 maintainers = with maintainers; [ domenkozar ];
23 };
24
25}