Merge pull request #100503 from rnhmjoj/bup

bup: use python3
This commit is contained in:
Michele Guerini Rocco 2020-10-22 13:50:58 +02:00 committed by GitHub
commit c5c468bda6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, makeWrapper
, perl, pandoc, python2Packages, git
, perl, pandoc, python3Packages, git
, par2cmdline ? null, par2Support ? true
}:
@ -22,7 +22,7 @@ stdenv.mkDerivation {
buildInputs = [
git
(python2Packages.python.withPackages
(python3Packages.python.withPackages
(p: with p; [ setuptools tornado ]
++ stdenv.lib.optionals (!stdenv.isDarwin) [ pyxattr pylibacl fuse ]))
];