2018-09-22 08:41:55 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "shellingham";
|
2018-10-24 06:43:19 +01:00
|
|
|
version = "1.2.7";
|
2018-09-22 08:41:55 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-10-24 06:43:19 +01:00
|
|
|
sha256 = "06biyiwq9571mryzbr50am3mxpc3blscwqhiq8c66ac4xm3maszm";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|