Merge pull request #285864 from r-ryantm/auto-update/python311Packages.xattr
python311Packages.xattr: 1.0.0 -> 1.1.0
This commit is contained in:
commit
6eb004bff0
1 changed files with 10 additions and 4 deletions
|
@ -3,28 +3,34 @@
|
|||
, fetchPypi
|
||||
, python
|
||||
, cffi
|
||||
, setuptools
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "xattr";
|
||||
version = "1.0.0";
|
||||
format = "setuptools";
|
||||
version = "1.1.0";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-osfLLvRBv2eeJAtl4gXwij7jFeGQ/qVnPmD9aBLmNKU=";
|
||||
hash = "sha256-/svzsFBD7TSHooGQ3sPkxNh5svzsDjC6/Y7F1LYENjA=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
nativeBuildInputs = [
|
||||
cffi
|
||||
setuptools
|
||||
];
|
||||
|
||||
# https://github.com/xattr/xattr/issues/43
|
||||
doCheck = false;
|
||||
|
||||
propagatedBuildInputs = [
|
||||
cffi
|
||||
];
|
||||
|
||||
postBuild = ''
|
||||
${python.pythonOnBuildForHost.interpreter} -m compileall -f xattr
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue