1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/applications/version-management/git-and-tools/gita/default.nix

29 lines
544 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 {
2019-10-12 13:47:43 +01:00
version = "0.9.9";
pname = "gita";
2019-04-25 14:36:12 +01:00
src = fetchPypi {
inherit pname version;
2019-10-12 13:47:43 +01:00
sha256 = "1si2f9nyisbrvv8cvrjxj8r4cbrgc97ic0wdlbf34gvp020dsmgv";
};
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";
homepage = https://github.com/nosarthur/gita;
license = licenses.mit;
maintainers = with maintainers; [ seqizz ];
};
}