Merge pull request #46668 from mbode/doitlive_4

doitlive: 3.0.3 -> 4.0.1
This commit is contained in:
Jörg Thalheim
2018-09-24 13:26:27 +01:00
committed by GitHub
5 changed files with 73 additions and 3 deletions

View File

@@ -0,0 +1,23 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy3k,
click, jinja2, shellingham, six
}:
buildPythonPackage rec {
pname = "click-completion";
version = "0.4.1";
disabled = (!isPy3k);
src = fetchPypi {
inherit pname version;
sha256 = "1fjm22dyma26jrx4ki2z4dwbhcah4r848fz381x64sz5xxq3xdrk";
};
propagatedBuildInputs = [ click jinja2 shellingham six ];
meta = with stdenv.lib; {
description = "Add or enhance bash, fish, zsh and powershell completion in Click";
homepage = https://github.com/click-contrib/click-completion;
license = licenses.mit;
maintainers = with maintainers; [ mbode ];
};
}

View File

@@ -0,0 +1,22 @@
{ stdenv, buildPythonPackage, fetchPypi,
click
}:
buildPythonPackage rec {
pname = "click-didyoumean";
version = "0.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "1svaza5lpvdbmyrx5xi0riqzq4hb9wnlpqrg6r8zy14pbi42j8hi";
};
propagatedBuildInputs = [ click ];
meta = with stdenv.lib; {
description = "Enable git-like did-you-mean feature in click";
homepage = https://github.com/click-contrib/click-didyoumean;
license = licenses.mit;
maintainers = with maintainers; [ mbode ];
};
}

View File

@@ -0,0 +1,19 @@
{ stdenv, buildPythonPackage, fetchPypi
}:
buildPythonPackage rec {
pname = "shellingham";
version = "1.2.6";
src = fetchPypi {
inherit pname version;
sha256 = "0x1hja3jzvh7xmd0sxnfw9hi3k419s95vb7jjzh76yydzvss1r2q";
};
meta = with stdenv.lib; {
description = "Tool to Detect Surrounding Shell";
homepage = https://github.com/sarugaku/shellingham;
license = licenses.isc;
maintainers = with maintainers; [ mbode ];
};
}