2018-09-22 08:41:55 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "shellingham";
|
2018-12-24 20:30:11 +00:00
|
|
|
version = "1.2.8";
|
2018-09-22 08:41:55 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-12-24 20:30:11 +00:00
|
|
|
sha256 = "115k1z2klgsvyzg4q5ip0iqxyb565pkchhf2fsr846k68gqcgrjn";
|
2018-09-22 08:41:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Tool to Detect Surrounding Shell";
|
|
|
|
homepage = https://github.com/sarugaku/shellingham;
|
|
|
|
license = licenses.isc;
|
|
|
|
maintainers = with maintainers; [ mbode ];
|
|
|
|
};
|
|
|
|
}
|