1{ lib
2, pkgs
3, fetchPypi
4, buildPythonPackage
5}:
6
7buildPythonPackage rec {
8 pname = "pyxattr";
9 version = "0.6.0";
10 name = pname + "-" + version;
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "1a3fqjlgbzq5hmc3yrnxxxl8nyn3rz2kfn17svbsahaq4gj0xl09";
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}