1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/kinetic/py-trees/default.nix

24 lines
719 B
Nix
Raw Normal View History

# 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;
};
}