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

22 lines
641 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin-pip, catkin }:
buildRosPackage {
pname = "ros-kinetic-python-ftputil";
version = "3.3.0-r3";
src = fetchurl {
url = https://github.com/asmodehn/ftputil-rosrelease/archive/release/kinetic/python-ftputil/3.3.0-3.tar.gz;
sha256 = "ea7134ed605ab490095d888680edee69e8c2dfc95bb36b9fc3b8f067eb5dfc37";
};
buildInputs = [ catkin-pip ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''a high-level FTP client library for Python'';
#license = lib.licenses.BSD;
};
}