mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonApplication
|
|
, fetchFromGitHub
|
|
, git
|
|
, pytest
|
|
, pyyaml
|
|
, setuptools
|
|
, installShellFiles
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
version = "0.11.9";
|
|
pname = "gita";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "9+zuLAx9lMfltsBqjvsivJ5wPnStPfq11XgGMv/JDpY=";
|
|
rev = version;
|
|
repo = "gita";
|
|
owner = "nosarthur";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pyyaml
|
|
setuptools
|
|
];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postUnpack = ''
|
|
for case in "\n" ""; do
|
|
substituteInPlace source/tests/test_main.py \
|
|
--replace "'gita$case'" "'source$case'"
|
|
done
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
git
|
|
pytest
|
|
];
|
|
|
|
checkPhase = ''
|
|
git init
|
|
pytest tests
|
|
'';
|
|
|
|
postInstall = ''
|
|
installShellCompletion --bash --name gita ${src}/.gita-completion.bash
|
|
installShellCompletion --zsh --name gita ${src}/.gita-completion.zsh
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|