pythonPackages.uranium: add missing dependency on shapely

Needed since 3.5.1: 0c6d90b42d
This commit is contained in:
Orivej Desh 2018-12-27 01:33:46 +00:00
parent 9d9a993b73
commit 9b3204d41b

View File

@ -1,5 +1,5 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, python, cmake
, pyqt5, numpy, scipy, libarcus, doxygen, gettext, pythonOlder }:
, pyqt5, numpy, scipy, shapely, libarcus, doxygen, gettext, pythonOlder }:
buildPythonPackage rec {
version = "3.5.1";
@ -16,7 +16,7 @@ buildPythonPackage rec {
disabled = pythonOlder "3.5.0";
buildInputs = [ python gettext ];
propagatedBuildInputs = [ pyqt5 numpy scipy libarcus ];
propagatedBuildInputs = [ pyqt5 numpy scipy shapely libarcus ];
nativeBuildInputs = [ cmake doxygen ];
postPatch = ''