Merge pull request #221076 from fabaff/shell-genie-bump

shell-genie: 0.2.6 -> 0.2.8
This commit is contained in:
Fabian Affolter 2023-03-14 00:39:23 +01:00 committed by GitHub
commit 23d59a4ec4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,20 +1,19 @@
{ lib
, python3
, fetchFromGitHub
, poetry
}:
with python3.pkgs;
buildPythonPackage rec {
pname = "shell-genie";
version = "0.2.6";
version = "0.2.8";
format = "pyproject";
src = fetchPypi {
pname = "shell_genie";
inherit version;
hash = "sha256-MgQFHsBXrihfWBB/cz45ITf8oJG2gSenf1wzdbrAbjw=";
hash = "sha256-6miqTjiGLK7r6evfchwuAXTHj+JwoH/CqgRoa5+jDJI=";
};
nativeBuildInputs = [
@ -28,7 +27,7 @@ buildPythonPackage rec {
rich
shellingham
typer
];
] ++ typer.optional-dependencies.all;
# No tests available
doCheck = false;