pythonPackages.xattr: refactor move to python-modules
This commit is contained in:
parent
7316e8470d
commit
567da0c23c
32
pkgs/development/python-modules/xattr/default.nix
Normal file
32
pkgs/development/python-modules/xattr/default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
@ -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 { };
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user