pythonPackages.pykdl: init at 1.4.0
This commit is contained in:
20
pkgs/development/python-modules/pykdl/default.nix
Normal file
20
pkgs/development/python-modules/pykdl/default.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{ lib, stdenv, toPythonModule, cmake, orocos-kdl, python, sip }:
|
||||
|
||||
toPythonModule (stdenv.mkDerivation {
|
||||
pname = "pykdl";
|
||||
inherit (orocos-kdl) version src;
|
||||
|
||||
sourceRoot = "source/python_orocos_kdl";
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ orocos-kdl ];
|
||||
propagatedBuildInputs = [ python sip ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Kinematics and Dynamics Library (Python bindings)";
|
||||
homepage = "https://www.orocos.org/kdl.html";
|
||||
license = licenses.lgpl21Only;
|
||||
maintainers = with maintainers; [ lopsided98 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user