forked from mirrors/nixpkgs
shell-genie: 0.2.6 -> 0.2.8
This commit is contained in:
parent
5b67d5b92f
commit
c1b5b438f1
|
@ -1,20 +1,19 @@
|
||||||
{ lib
|
{ lib
|
||||||
, python3
|
, python3
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, poetry
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with python3.pkgs;
|
with python3.pkgs;
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "shell-genie";
|
pname = "shell-genie";
|
||||||
version = "0.2.6";
|
version = "0.2.8";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
pname = "shell_genie";
|
pname = "shell_genie";
|
||||||
inherit version;
|
inherit version;
|
||||||
hash = "sha256-MgQFHsBXrihfWBB/cz45ITf8oJG2gSenf1wzdbrAbjw=";
|
hash = "sha256-6miqTjiGLK7r6evfchwuAXTHj+JwoH/CqgRoa5+jDJI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -28,7 +27,7 @@ buildPythonPackage rec {
|
||||||
rich
|
rich
|
||||||
shellingham
|
shellingham
|
||||||
typer
|
typer
|
||||||
];
|
] ++ typer.optional-dependencies.all;
|
||||||
|
|
||||||
# No tests available
|
# No tests available
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
Loading…
Reference in a new issue