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