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

34 lines
912 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, python, fetchFromGitHub
, cmake, sip, protobuf, pythonOlder }:
2017-02-25 22:58:52 +01:00
buildPythonPackage rec {
pname = "libarcus";
version = "4.1.0";
2018-07-14 22:46:14 +02:00
format = "other";
2017-02-25 22:58:52 +01:00
src = fetchFromGitHub {
owner = "Ultimaker";
repo = "libArcus";
rev = version;
sha256 = "1x06daijxbrqj0dlxmi2zn7ap74zf6hih3krmkwhvarm2nr052g4";
2017-02-25 22:58:52 +01:00
};
disabled = pythonOlder "3.4.0";
propagatedBuildInputs = [ sip ];
2017-02-25 22:58:52 +01:00
nativeBuildInputs = [ cmake ];
buildInputs = [ protobuf ];
2017-02-25 22:58:52 +01:00
postPatch = ''
sed -i 's#''${Python3_SITELIB}#${placeholder "out"}/${python.sitePackages}#' cmake/SIPMacros.cmake
2017-02-25 22:58:52 +01:00
'';
meta = with stdenv.lib; {
description = "Communication library between internal components for Ultimaker software";
2018-06-07 11:52:25 +02:00
homepage = https://github.com/Ultimaker/libArcus;
license = licenses.lgpl3Plus;
2017-02-25 22:58:52 +01:00
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
};
}