nixpkgs/pkgs/development/python-modules/shellingham/default.nix
2019-03-26 13:23:28 +01:00

20 lines
458 B
Nix

{ stdenv, buildPythonPackage, fetchPypi
}:
buildPythonPackage rec {
pname = "shellingham";
version = "1.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "116r78nhw74rh857kv9l614xjr6k89919s6l8b14hlvy8fz8rg51";
};
meta = with stdenv.lib; {
description = "Tool to Detect Surrounding Shell";
homepage = https://github.com/sarugaku/shellingham;
license = licenses.isc;
maintainers = with maintainers; [ mbode ];
};
}