nixpkgs/pkgs/development/python-modules/pyxattr/default.nix

26 lines
610 B
Nix
Raw Normal View History

2017-10-28 08:29:10 +01:00
{ lib
, pkgs
, fetchPypi
, buildPythonPackage
}:
buildPythonPackage rec {
pname = "pyxattr";
2019-12-19 19:31:21 +00:00
version = "0.7.1";
2017-10-28 08:29:10 +01:00
src = fetchPypi {
inherit pname version;
2019-12-19 19:31:21 +00:00
sha256 = "965388dd629334e850aa989a67d2360ec8257cfe8f67d07c29f980d3152f2882";
2017-10-28 08:29:10 +01: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;
};
}