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

34 lines
922 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, python, fetchFromGitHub
, cmake, sip, protobuf, pythonOlder }:
2017-02-25 21:58:52 +00:00
buildPythonPackage rec {
pname = "libarcus";
2020-03-09 22:45:37 +00:00
version = "4.5.0";
2018-07-14 21:46:14 +01:00
format = "other";
2017-02-25 21:58:52 +00:00
src = fetchFromGitHub {
owner = "Ultimaker";
repo = "libArcus";
rev = version;
2020-03-09 22:45:37 +00:00
sha256 = "1sfy8skvgw6hiihs9jmfn7a13yappqwffir98pahyg7cim7p55kr";
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 = ''
sed -i 's#''${Python3_SITEARCH}#${placeholder "out"}/${python.sitePackages}#' cmake/SIPMacros.cmake
2017-02-25 21:58:52 +00:00
'';
meta = with stdenv.lib; {
description = "Communication library between internal components for Ultimaker software";
homepage = "https://github.com/Ultimaker/libArcus";
license = licenses.lgpl3Plus;
2017-02-25 21:58:52 +00:00
platforms = platforms.linux;
2019-08-08 08:09:25 +01:00
maintainers = with maintainers; [ abbradar gebner ];
2017-02-25 21:58:52 +00:00
};
}