1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00
nixpkgs/pkgs/applications/version-management/git-and-tools/gita/default.nix

29 lines
547 B
Nix
Raw Normal View History

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-04-25 14:36:12 +01:00
buildPythonApplication rec {
2020-05-28 07:49:32 +01:00
version = "0.10.9";
pname = "gita";
2019-04-25 14:36:12 +01:00
src = fetchPypi {
inherit pname version;
2020-05-28 07:49:32 +01:00
sha256 = "0fbzk9rj895s5fpbnsyy3gxwbf5spqycisx5cqwzxgm0n5qkz9dk";
};
2019-04-25 14:36:12 +01:00
propagatedBuildInputs = [
pyyaml
2019-10-12 13:47:43 +01:00
setuptools
];
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";
license = licenses.mit;
maintainers = with maintainers; [ seqizz ];
};
}