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

34 lines
922 B
Nix
Raw Normal View History

2019-06-01 11:19:16 +02:00
{ stdenv, buildPythonPackage, python, fetchFromGitHub
, cmake, sip, protobuf, pythonOlder }:
2017-02-26 00:58:52 +03:00
2018-06-23 15:27:58 +02:00
buildPythonPackage rec {
2017-05-27 11:25:35 +02:00
pname = "libarcus";
2020-09-06 13:31:16 +02:00
version = "4.7.1";
2018-07-14 22:46:14 +02:00
format = "other";
2018-06-23 15:27:58 +02:00
2017-02-26 00:58:52 +03:00
src = fetchFromGitHub {
owner = "Ultimaker";
repo = "libArcus";
rev = version;
2020-09-06 13:31:16 +02:00
sha256 = "0wmrcvw7k34ib93shhmjzh6kpndgqr37kyr377sril5clmac0z1f";
2017-02-26 00:58:52 +03:00
};
2018-06-23 15:27:58 +02:00
disabled = pythonOlder "3.4.0";
propagatedBuildInputs = [ sip ];
2017-02-26 00:58:52 +03:00
nativeBuildInputs = [ cmake ];
buildInputs = [ protobuf ];
2017-02-26 00:58:52 +03:00
postPatch = ''
sed -i 's#''${Python3_SITEARCH}#${placeholder "out"}/${python.sitePackages}#' cmake/SIPMacros.cmake
2017-02-26 00:58:52 +03:00
'';
meta = with stdenv.lib; {
description = "Communication library between internal components for Ultimaker software";
homepage = "https://github.com/Ultimaker/libArcus";
2018-12-27 02:16:32 +00:00
license = licenses.lgpl3Plus;
2017-02-26 00:58:52 +03:00
platforms = platforms.linux;
2019-08-08 09:09:25 +02:00
maintainers = with maintainers; [ abbradar gebner ];
2017-02-26 00:58:52 +03:00
};
}