pythonPackages.pykdl: init at 1.4.0
This commit is contained in:
parent
ec92ffc530
commit
83162ab3b9
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;
|
||||
};
|
||||
})
|
@ -5013,6 +5013,8 @@ in {
|
||||
|
||||
pyjwt = callPackage ../development/python-modules/pyjwt { };
|
||||
|
||||
pykdl = callPackage ../development/python-modules/pykdl { };
|
||||
|
||||
pykdtree = callPackage ../development/python-modules/pykdtree { inherit (pkgs.llvmPackages) openmp; };
|
||||
|
||||
pykeepass = callPackage ../development/python-modules/pykeepass { };
|
||||
|
Loading…
Reference in New Issue
Block a user