1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00

pythonPackages.wstool: remove

This package is no longer supported or needed for anything important.
This commit is contained in:
Ben Wolsieffer 2020-12-05 18:16:27 -05:00
parent 680da42d76
commit b01bd22b07
2 changed files with 0 additions and 22 deletions

View file

@ -35,8 +35,6 @@ self: super: with super.lib; let
rospkg = pySelf.callPackage ./rospkg { };
vcstools = pySelf.callPackage ./vcstools { };
wstool = pySelf.callPackage ./wstool { };
} // optionalAttrs pySuper.isPy3k {
# This has to be done here (rather than in rosPackages) because
# packageOverrides doesn't compose

View file

@ -1,20 +0,0 @@
{ lib, buildPythonPackage, fetchPypi, vcstools, pyyaml }:
buildPythonPackage rec {
pname = "wstool";
version = "0.1.17";
src = fetchPypi {
inherit pname version;
sha256 = "0dz2gn2qx919s1z5wa94nkvb01pnqp945mvj97108w7i1q8lz6y7";
};
propagatedBuildInputs = [ vcstools pyyaml ];
meta = with lib; {
description = "A tool for managing a workspace of multiple heterogenous SCM repositories";
homepage = "http://wiki.ros.org/wstool";
license = licenses.bsd3;
maintainers = with maintainers; [ lopsided98 ];
};
}