Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / xattr / default.nix
blob6d24e5dffc8f1f6bd60290246ae5588d6bfd2794
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , python
5 , cffi
6 , setuptools
7 , pythonOlder
8 }:
10 buildPythonPackage rec {
11   pname = "xattr";
12   version = "1.1.0";
13   pyproject = true;
15   disabled = pythonOlder "3.8";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-/svzsFBD7TSHooGQ3sPkxNh5svzsDjC6/Y7F1LYENjA=";
20   };
22   nativeBuildInputs = [
23     cffi
24     setuptools
25   ];
27   # https://github.com/xattr/xattr/issues/43
28   doCheck = false;
30   propagatedBuildInputs = [
31     cffi
32   ];
34   postBuild = ''
35     ${python.pythonOnBuildForHost.interpreter} -m compileall -f xattr
36   '';
38   pythonImportsCheck = [
39     "xattr"
40   ];
42   meta = with lib; {
43     description = "Python wrapper for extended filesystem attributes";
44     mainProgram = "xattr";
45     homepage = "https://github.com/xattr/xattr";
46     changelog = "https://github.com/xattr/xattr/blob/v${version}/CHANGES.txt";
47     license = licenses.mit;
48     maintainers = with maintainers; [ ];
49   };