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/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";
2022-11-06 19:59:47 -05:00
version = "0.2.8";
src = fetchPypi {
inherit pname version;
2022-11-06 19:59:47 -05:00
hash = "sha256-g/cZ8je7hSVE3hJGNdQ3agrYYcFMdSgw+9//vTjNlao=";
};
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 ];
};
}