mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
gitAndTools.pass-git-helper: 0.4 -> 1.1.0
This commit is contained in:
parent
e204319c74
commit
6617122306
@ -1,17 +1,21 @@
|
|||||||
{ stdenv, buildPythonApplication, fetchFromGitHub, pyxdg }:
|
{ stdenv, buildPythonApplication, fetchFromGitHub, pyxdg, pytest }:
|
||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "pass-git-helper";
|
pname = "pass-git-helper";
|
||||||
version = "0.4";
|
version = "1.1.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "languitar";
|
owner = "languitar";
|
||||||
repo = "pass-git-helper";
|
repo = "pass-git-helper";
|
||||||
rev = version;
|
rev = "v${version}";
|
||||||
sha256 = "1zccbmq5l6asl9qm1f90vg9467y3spmv3ayrw07qizrj43yfd9ap";
|
sha256 = "18nvwlp0w4aqj268wly60rnjzqw2d8jl0hbs6bkwp3hpzzz5g6yd";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ pyxdg ];
|
propagatedBuildInputs = [ pyxdg ];
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
preCheck = ''
|
||||||
|
export HOME=$(mktemp -d)
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://github.com/languitar/pass-git-helper";
|
homepage = "https://github.com/languitar/pass-git-helper";
|
||||||
|
Loading…
Reference in New Issue
Block a user