2018-06-23 14:27:58 +01:00
|
|
|
{ stdenv, lib, buildPythonPackage, fetchFromGitHub
|
|
|
|
, python, cmake, sip, protobuf, pythonOlder }:
|
2017-02-25 21:58:52 +00:00
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "libarcus";
|
2018-07-14 21:46:14 +01:00
|
|
|
version = "3.4.1";
|
|
|
|
format = "other";
|
2018-06-23 14:27:58 +01:00
|
|
|
|
2017-02-25 21:58:52 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Ultimaker";
|
|
|
|
repo = "libArcus";
|
|
|
|
rev = version;
|
2018-02-25 17:13:35 +00:00
|
|
|
sha256 = "0mln8myvfl7rq2p4g1vadvlykckd8490jijag4xa5hhj3w3p19bk";
|
2017-02-25 21:58:52 +00:00
|
|
|
};
|
2018-06-23 14:27:58 +01:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.4.0";
|
|
|
|
|
2017-02-25 21:58:52 +00:00
|
|
|
propagatedBuildInputs = [ sip protobuf ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
# To workaround buggy SIP detection which overrides PYTHONPATH
|
|
|
|
sed -i '/SET(ENV{PYTHONPATH}/d' cmake/FindSIP.cmake
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Communication library between internal components for Ultimaker software";
|
2018-06-07 10:52:25 +01:00
|
|
|
homepage = https://github.com/Ultimaker/libArcus;
|
2017-02-25 21:58:52 +00:00
|
|
|
license = licenses.agpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|