depot/third_party/nixpkgs/pkgs/development/python-modules/xattr/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

47 lines
925 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
python,
cffi,
setuptools,
pythonOlder,
}:
buildPythonPackage rec {
pname = "xattr";
version = "1.1.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-/svzsFBD7TSHooGQ3sPkxNh5svzsDjC6/Y7F1LYENjA=";
};
nativeBuildInputs = [
cffi
setuptools
];
# https://github.com/xattr/xattr/issues/43
doCheck = false;
propagatedBuildInputs = [ cffi ];
postBuild = ''
${python.pythonOnBuildForHost.interpreter} -m compileall -f xattr
'';
pythonImportsCheck = [ "xattr" ];
meta = with lib; {
description = "Python wrapper for extended filesystem attributes";
mainProgram = "xattr";
homepage = "https://github.com/xattr/xattr";
changelog = "https://github.com/xattr/xattr/blob/v${version}/CHANGES.txt";
license = licenses.mit;
maintainers = [ ];
};
}