depot/third_party/nixpkgs/pkgs/development/python-modules/shellingham/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

20 lines
486 B
Nix

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