python2Packages.pyxattr: remain at 0.6.1, fixes #76979
This commit is contained in:
parent
0d0a4f160e
commit
e635333870
1 changed files with 10 additions and 1 deletions
|
@ -4986,7 +4986,16 @@ in {
|
|||
|
||||
pywinrm = callPackage ../development/python-modules/pywinrm { };
|
||||
|
||||
pyxattr = callPackage ../development/python-modules/pyxattr { };
|
||||
pyxattr = let
|
||||
pyxattr' = callPackage ../development/python-modules/pyxattr { };
|
||||
pyxattr_2 = pyxattr'.overridePythonAttrs(oldAttrs: {
|
||||
version = "0.6.1";
|
||||
src = oldAttrs.src.override {
|
||||
inherit version;
|
||||
sha256 = "b525843f6b51036198b3b87c4773a5093d6dec57d60c18a1f269dd7059aa16e3";
|
||||
};
|
||||
});
|
||||
in if isPy3k then pyxattr' else pyxattr_2;
|
||||
|
||||
pyamg = callPackage ../development/python-modules/pyamg { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue