ced21f5e1a
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
33 lines
892 B
Nix
33 lines
892 B
Nix
{ stdenv, lib, buildPythonPackage, fetchFromGitHub
|
|
, python, cmake, sip, protobuf, pythonOlder }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "libarcus";
|
|
version = "3.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Ultimaker";
|
|
repo = "libArcus";
|
|
rev = version;
|
|
sha256 = "0mln8myvfl7rq2p4g1vadvlykckd8490jijag4xa5hhj3w3p19bk";
|
|
};
|
|
|
|
disabled = pythonOlder "3.4.0";
|
|
|
|
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";
|
|
homepage = https://github.com/Ultimaker/libArcus;
|
|
license = licenses.agpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|