depot/third_party/nixpkgs/pkgs/development/python-modules/xattr/default.nix
Default email a6d62be0d1 Project import generated by Copybara.
GitOrigin-RevId: ac169ec6371f0d835542db654a65e0f2feb07838
2021-12-26 18:43:05 +01:00

32 lines
611 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, python
, cffi
}:
buildPythonPackage rec {
pname = "xattr";
version = "0.9.8";
src = fetchPypi {
inherit pname version;
sha256 = "bf11c8c857215e3ef60b031e7807264f30af4348d7565a7e9b8dca70593753c7";
};
propagatedBuildInputs = [ cffi ];
# https://github.com/xattr/xattr/issues/43
doCheck = false;
postBuild = ''
${python.interpreter} -m compileall -f xattr
'';
meta = with lib; {
homepage = "https://github.com/xattr/xattr";
description = "Python wrapper for extended filesystem attributes";
license = licenses.mit;
};
}