Skip to content

Commit

Permalink
pythonPackages.cntk: fix nativeBuildInputs
Browse files Browse the repository at this point in the history
  • Loading branch information
markuskowa committed Apr 9, 2019
1 parent b972bee commit d6843c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/development/python-modules/cntk/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
buildPythonPackage rec {
inherit (pkgs.cntk) name version src;

buildInputs = [ pkgs.cntk pkgs.swig pkgs.openmpi ];
nativeBuildInputs = [ pkgs.swig pkgs.openmpi ];
buildInputs = [ pkgs.cntk pkgs.openmpi ];
propagatedBuildInputs = [ numpy scipy enum34 protobuf pip ];

CNTK_LIB_PATH = "${pkgs.cntk}/lib";
Expand Down

0 comments on commit d6843c1

Please sign in to comment.