2019-09-05 22:43:33 -04:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy27, colcon-core, setuptools }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "colcon-python-setup-py";
|
2020-11-26 01:36:01 -05:00
|
|
|
version = "0.2.7";
|
2019-09-05 22:43:33 -04:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-26 01:36:01 -05:00
|
|
|
sha256 = "0ba1vq5sm2rbddasl85qx5mi7chcz8s1drnr0rvpj0a3bh497hpf";
|
2019-09-05 22:43:33 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ colcon-core setuptools ];
|
|
|
|
|
|
|
|
# Requires unpackaged dependencies
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
disabled = isPy27;
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|