2020-04-24 23:36:52 +00:00
|
|
|
{ lib
|
|
|
|
, pkgs
|
|
|
|
, fetchPypi
|
|
|
|
, buildPythonPackage
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyxattr";
|
2023-01-20 10:41:00 +00:00
|
|
|
version = "0.8.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-03-15 16:39:30 +00:00
|
|
|
hash = "sha256-e/QM7FrpPdZWEocX29Joz8Ozso2VU214hndslPomeFU=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# IOError: [Errno 95] Operation not supported (expected)
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
buildInputs = with pkgs; [ attr ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A Python extension module which gives access to the extended attributes for filesystem objects available in some operating systems";
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
};
|
|
|
|
}
|