nixpkgs/pkgs/development/python-modules/xattr/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

50 lines
946 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 = with maintainers; [ ];
};
}