1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/pkgs/colcon/python-setup-py.nix

27 lines
725 B
Nix
Raw Normal View History

2023-04-02 12:01:45 -04:00
{ lib, buildPythonPackage, fetchPypi, colcon-core, setuptools }:
buildPythonPackage rec {
pname = "colcon-python-setup-py";
version = "0.2.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-TYurLgW6M04p7uNxX73kkCgTQu2OAA4lITDlxRkVODo=";
};
propagatedBuildInputs = [ colcon-core setuptools ];
# Requires unpackaged dependencies
doCheck = false;
meta = with lib; {
description = ''
An extension for colcon-core to identify packages with a setup.py file by
introspecting the arguments to the setup() function call of setuptools.
'';
homepage = "https://colcon.readthedocs.io";
license = licenses.asl20;
maintainers = with maintainers; [ lopsided98 ];
};
}