2019-08-30 00:44:11 -04:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pyyaml, python-dateutil }:
|
2019-04-06 01:46:54 -04:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "vcstools";
|
2019-08-30 00:44:11 -04:00
|
|
|
version = "0.1.42";
|
2019-04-06 01:46:54 -04:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-08-30 00:44:11 -04:00
|
|
|
sha256 = "0ykp0847fk16fffa2l29gp5hk9d11pqmpq2nmwwsgp8gignxhj4y";
|
2019-04-06 01:46:54 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pyyaml python-dateutil ];
|
|
|
|
|
|
|
|
# Tries to download files and lots of other issues
|
|
|
|
doCheck = false;
|
|
|
|
|
2019-08-30 00:44:11 -04:00
|
|
|
meta = with lib; {
|
2019-04-06 01:46:54 -04:00
|
|
|
description = "Python library for interacting with various VCS systems";
|
2019-08-30 00:44:11 -04:00
|
|
|
homepage = "http://wiki.ros.org/vcstools";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ lopsided98 ];
|
2019-04-06 01:46:54 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|