1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/kinetic/py-trees/default.nix
2019-04-06 20:59:50 -04:00

23 lines
719 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, pythonPackages }:
buildRosPackage {
pname = "ros-kinetic-py-trees";
version = "0.5.12";
src = fetchurl {
url = https://github.com/stonier/py_trees-release/archive/release/kinetic/py_trees/0.5.12-0.tar.gz;
sha256 = "d6a11eaf83c6cb706584db56c1d28109f5898a974b1bb429eb87d4e3b197cb4e";
};
buildInputs = [ pythonPackages.setuptools ];
propagatedBuildInputs = [ pythonPackages.pydot pythonPackages.enum34 ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Pythonic implementation of behaviour trees.'';
#license = lib.licenses.BSD;
};
}