2019-08-04 22:43:32 +02:00
|
|
|
{ stdenv, callPackage, fetchurl, fetchgit, buildPythonPackage, fetchFromGitHub, python, cmake
|
2019-05-06 01:31:51 +02:00
|
|
|
, pyqt5, numpy, scipy, shapely, libarcusLulzbot, doxygen, gettext, pythonOlder }:
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
buildPythonPackage {
|
2019-10-13 22:32:33 +02:00
|
|
|
version = "3.6.21";
|
2019-05-06 01:31:51 +02:00
|
|
|
pname = "uranium";
|
|
|
|
name = "uraniumLulzbot";
|
|
|
|
format = "other";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = https://code.alephobjects.com/diffusion/U/uranium.git;
|
2019-10-13 22:32:33 +02:00
|
|
|
rev = "54d911edd2551c5875c554928896122835a0dd6c";
|
|
|
|
sha256 = "04bym3vwikaxw8ab0mymv9sc9n8i7yw5kfsv99ic811g9lzz3j1i";
|
2019-05-06 01:31:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.5.0";
|
|
|
|
|
|
|
|
buildInputs = [ python gettext ];
|
|
|
|
propagatedBuildInputs = [ pyqt5 numpy scipy shapely libarcusLulzbot ];
|
|
|
|
nativeBuildInputs = [ cmake doxygen ];
|
|
|
|
|
|
|
|
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";
|
|
|
|
homepage = https://code.alephobjects.com/diffusion/U/;
|
|
|
|
license = licenses.lgpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ chaduffy ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|