1{ stdenv, buildPythonPackage, fetchPypi
2}:
3
4buildPythonPackage rec {
5 pname = "shellingham";
6 version = "1.3.2";
7 format = "pyproject";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "576c1982bea0ba82fb46c36feb951319d7f42214a82634233f58b40d858a751e";
12 };
13
14 meta = with stdenv.lib; {
15 description = "Tool to Detect Surrounding Shell";
16 homepage = "https://github.com/sarugaku/shellingham";
17 license = licenses.isc;
18 maintainers = with maintainers; [ mbode ];
19 };
20}