2019-04-25 14:36:12 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonApplication
|
|
|
|
, fetchPypi
|
|
|
|
, pyyaml
|
2019-10-12 13:47:43 +01:00
|
|
|
, setuptools
|
2019-04-25 14:36:12 +01:00
|
|
|
}:
|
2019-02-11 10:24:43 +00:00
|
|
|
|
2019-04-25 14:36:12 +01:00
|
|
|
buildPythonApplication rec {
|
2020-05-28 07:49:32 +01:00
|
|
|
version = "0.10.9";
|
2019-02-11 10:24:43 +00:00
|
|
|
pname = "gita";
|
|
|
|
|
2019-04-25 14:36:12 +01:00
|
|
|
src = fetchPypi {
|
2019-02-11 10:24:43 +00:00
|
|
|
inherit pname version;
|
2020-05-28 07:49:32 +01:00
|
|
|
sha256 = "0fbzk9rj895s5fpbnsyy3gxwbf5spqycisx5cqwzxgm0n5qkz9dk";
|
2019-02-11 10:24:43 +00:00
|
|
|
};
|
|
|
|
|
2019-04-25 14:36:12 +01:00
|
|
|
propagatedBuildInputs = [
|
2019-02-11 10:24:43 +00:00
|
|
|
pyyaml
|
2019-10-12 13:47:43 +01:00
|
|
|
setuptools
|
2019-02-11 10:24:43 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A command-line tool to manage multiple git repos";
|
2020-03-31 05:20:27 +01:00
|
|
|
homepage = "https://github.com/nosarthur/gita";
|
2019-02-11 10:24:43 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ seqizz ];
|
|
|
|
};
|
|
|
|
}
|