pythonPackages.xattr: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-26 13:10:52 -04:00 committed by Frederik Rietdijk
parent 7316e8470d
commit 567da0c23c
2 changed files with 33 additions and 17 deletions

View File

@ -0,0 +1,32 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, python
, cffi
}:
buildPythonPackage rec {
pname = "xattr";
version = "0.7.8";
src = fetchPypi {
inherit pname version;
sha256 = "0nbqfghgy26jyp5q7wl3rj78wr8s39m5042df2jlldg3fx6j0417";
};
propagatedBuildInputs = [ cffi ];
# https://github.com/xattr/xattr/issues/43
doCheck = false;
postBuild = ''
${python.interpreter} -m compileall -f xattr
'';
meta = with stdenv.lib; {
homepage = http://github.com/xattr/xattr;
description = "Python wrapper for extended filesystem attributes";
license = licenses.mit;
};
}

View File

@ -3676,23 +3676,7 @@ in {
qpid-python = callPackage ../development/python-modules/qpid-python { };
xattr = buildPythonPackage rec {
name = "xattr-0.7.8";
src = pkgs.fetchurl {
url = "mirror://pypi/x/xattr/${name}.tar.gz";
sha256 = "0nbqfghgy26jyp5q7wl3rj78wr8s39m5042df2jlldg3fx6j0417";
};
# https://github.com/xattr/xattr/issues/43
doCheck = false;
postBuild = ''
${python.interpreter} -m compileall -f xattr
'';
propagatedBuildInputs = [ self.cffi ];
};
xattr = callPackage ../development/python-modules/xattr { };
safe = callPackage ../development/python-modules/safe { };