2018-09-22 08:41:55 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "shellingham";
|
2019-04-16 06:40:34 +01:00
|
|
|
version = "1.3.1";
|
2018-09-22 08:41:55 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-16 06:40:34 +01:00
|
|
|
sha256 = "1q7kws7w4x2hji3g7y0ni9ddk4sd676ylrb3db54gbpys6xj6nwq";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|