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/ros-pytest/default.nix
2019-04-06 20:59:50 -04:00

24 lines
742 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, rostest, catkin, pythonPackages, rospy }:
buildRosPackage {
pname = "ros-kinetic-ros-pytest";
version = "0.1.2-r3";
src = fetchurl {
url = https://github.com/machinekoder/ros_pytest-release/archive/release/kinetic/ros_pytest/0.1.2-3.tar.gz;
sha256 = "6c298f97196fac9a56f4b972937315f9e59cd46dbc37a521efcac4e740e47d2b";
};
buildInputs = [ pythonPackages.pytest rospy ];
checkInputs = [ rostest ];
propagatedBuildInputs = [ pythonPackages.pytest rospy ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''The ros_pytest package'';
#license = lib.licenses.MIT;
};
}