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