1{ lib
2, pkgs
3, fetchPypi
4, buildPythonPackage
5}:
6
7buildPythonPackage rec {
8 pname = "pyxattr";
9 version = "0.6.1";
10 name = pname + "-" + version;
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "b525843f6b51036198b3b87c4773a5093d6dec57d60c18a1f269dd7059aa16e3";
15 };
16
17 # IOError: [Errno 95] Operation not supported (expected)
18 doCheck = false;
19
20 buildInputs = with pkgs; [ attr ];
21
22 meta = with lib; {
23 description = "A Python extension module which gives access to the extended attributes for filesystem objects available in some operating systems";
24 license = licenses.lgpl21Plus;
25 };
26}