about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2018-12-27 01:33:46 +0000
committerOrivej Desh <orivej@gmx.fr>2018-12-27 01:34:15 +0000
commit9b3204d41b212587a6370ce25fad1b2f4d2389f7 (patch)
tree97c01bd30e97f88c0ebafb1a7da155662e968b6c
parent9d9a993b73316a19d7020f435eddb256777d94ca (diff)
downloadnixlib-9b3204d41b212587a6370ce25fad1b2f4d2389f7.tar
nixlib-9b3204d41b212587a6370ce25fad1b2f4d2389f7.tar.gz
nixlib-9b3204d41b212587a6370ce25fad1b2f4d2389f7.tar.bz2
nixlib-9b3204d41b212587a6370ce25fad1b2f4d2389f7.tar.lz
nixlib-9b3204d41b212587a6370ce25fad1b2f4d2389f7.tar.xz
nixlib-9b3204d41b212587a6370ce25fad1b2f4d2389f7.tar.zst
nixlib-9b3204d41b212587a6370ce25fad1b2f4d2389f7.zip
pythonPackages.uranium: add missing dependency on shapely
Needed since 3.5.1: https://github.com/Ultimaker/Uranium/commit/0c6d90b42d29fae5f41c23487e74ae8164b324ac
-rw-r--r--pkgs/development/python-modules/uranium/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/uranium/default.nix b/pkgs/development/python-modules/uranium/default.nix
index 3c4d17a4698e..cee339007846 100644
--- a/pkgs/development/python-modules/uranium/default.nix
+++ b/pkgs/development/python-modules/uranium/default.nix
@@ -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 = ''