2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchFromGitHub, python, cmake
|
2018-12-27 01:33:46 +00:00
|
|
|
, pyqt5, numpy, scipy, shapely, libarcus, doxygen, gettext, pythonOlder }:
|
2017-02-25 21:59:08 +00:00
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
buildPythonPackage rec {
|
2018-12-27 02:17:24 +00:00
|
|
|
version = "3.6.0";
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "uranium";
|
2018-06-23 14:27:58 +01:00
|
|
|
format = "other";
|
2018-01-12 19:47:10 +00:00
|
|
|
|
2017-02-25 21:59:08 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Ultimaker";
|
|
|
|
repo = "Uranium";
|
|
|
|
rev = version;
|
2018-12-27 02:17:24 +00:00
|
|
|
sha256 = "02hid13h8anb9bgv2hhrcdg10bxdxa9hj9pbdv3gw3lpn9r2va98";
|
2017-02-25 21:59:08 +00:00
|
|
|
};
|
2018-01-12 19:47:10 +00:00
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
disabled = pythonOlder "3.5.0";
|
|
|
|
|
2017-07-27 13:50:44 +01:00
|
|
|
buildInputs = [ python gettext ];
|
2018-12-27 01:33:46 +00:00
|
|
|
propagatedBuildInputs = [ pyqt5 numpy scipy shapely libarcus ];
|
2017-07-27 13:50:44 +01:00
|
|
|
nativeBuildInputs = [ cmake doxygen ];
|
2017-02-25 21:59:08 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -i 's,/python''${PYTHON_VERSION_MAJOR}/dist-packages,/python''${PYTHON_VERSION_MAJOR}.''${PYTHON_VERSION_MINOR}/site-packages,g' CMakeLists.txt
|
|
|
|
sed -i \
|
|
|
|
-e "s,Resources.addSearchPath(os.path.join(os.path.abspath(os.path.dirname(__file__)).*,Resources.addSearchPath(\"$out/share/uranium/resources\")," \
|
|
|
|
-e "s,self._plugin_registry.addPluginLocation(os.path.join(os.path.abspath(os.path.dirname(__file__)).*,self._plugin_registry.addPluginLocation(\"$out/lib/uranium/plugins\")," \
|
|
|
|
UM/Application.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A Python framework for building Desktop applications";
|
2018-02-25 16:47:45 +00:00
|
|
|
homepage = https://github.com/Ultimaker/Uranium;
|
2018-12-27 02:17:24 +00:00
|
|
|
license = licenses.lgpl3Plus;
|
2017-02-25 21:59:08 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|