mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
778 B
Nix
23 lines
778 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin-pip, catkin, pythonPackages }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-flask-cors";
|
|
version = "3.0.3-r2";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/pyros-dev/flask-cors-rosrelease/archive/release/kinetic/flask_cors/3.0.3-2.tar.gz;
|
|
sha256 = "2735725eb5e55baa6d4bbc719d63dd1898f4c03bcce965488dd8139059fbd285";
|
|
};
|
|
|
|
buildInputs = [ pythonPackages.flask catkin-pip pythonPackages.six ];
|
|
propagatedBuildInputs = [ pythonPackages.flask pythonPackages.six ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Cross Origin Resource Sharing ( CORS ) support for Flask'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|