nixpkgs/pkgs/development/python-modules/libarcus/default.nix

35 lines
924 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchFromGitHub
, cmake, sip, protobuf, pythonOlder }:
2017-02-25 21:58:52 +00:00
buildPythonPackage rec {
pname = "libarcus";
version = "3.6.0";
2018-07-14 20:46:14 +00:00
format = "other";
2017-02-25 21:58:52 +00:00
src = fetchFromGitHub {
owner = "Ultimaker";
repo = "libArcus";
rev = version;
sha256 = "1zbp6axai47k3p2q497wiajls1h17wss143zynbwbwrqinsfiw43";
2017-02-25 21:58:52 +00:00
};
disabled = pythonOlder "3.4.0";
propagatedBuildInputs = [ sip ];
2017-02-25 21:58:52 +00:00
nativeBuildInputs = [ cmake ];
buildInputs = [ protobuf ];
2017-02-25 21:58:52 +00:00
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 09:52:25 +00:00
homepage = https://github.com/Ultimaker/libArcus;
license = licenses.lgpl3Plus;
2017-02-25 21:58:52 +00:00
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
};
}