Skip to content

Commit

Permalink
CastXML: refactor to avoid python2 dependency (#101996)
Browse files Browse the repository at this point in the history
Switch pythonPackages.sphinx to python3Packages.sphinx. Should
only affect the build of the man-page.
  • Loading branch information
braunse authored Oct 29, 2020
1 parent 2eb1610 commit a74a5c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/tools/castxml/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ lib, stdenv, fetchFromGitHub
, pythonPackages
, python3Packages
, cmake
, llvmPackages
, libffi, libxml2, zlib
Expand All @@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
sha256 = "0ypj67xrgj228myp7l1gsjw1ja97q68nmj98dsd33srmiayqraj4";
};

nativeBuildInputs = [ cmake ] ++ stdenv.lib.optionals withMan [ pythonPackages.sphinx ];
nativeBuildInputs = [ cmake ] ++ stdenv.lib.optionals withMan [ python3Packages.sphinx ];

clangVersion = lib.getVersion llvmPackages.clang;

Expand Down

0 comments on commit a74a5c9

Please sign in to comment.