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

33 lines
619 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, python
, cffi
}:
buildPythonPackage rec {
pname = "xattr";
2018-11-04 10:35:21 +00:00
version = "0.9.6";
src = fetchPypi {
inherit pname version;
2018-11-04 10:35:21 +00:00
sha256 = "7cb1b28eeab4fe99cc4350e831434142fce658f7d03f173ff7722144e6a47458";
};
propagatedBuildInputs = [ cffi ];
# https://github.com/xattr/xattr/issues/43
doCheck = false;
postBuild = ''
${python.interpreter} -m compileall -f xattr
'';
meta = with stdenv.lib; {
homepage = https://github.com/xattr/xattr;
description = "Python wrapper for extended filesystem attributes";
license = licenses.mit;
};
}