Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / shellingham / default.nix
blob300368b31f13034dcad17849a258712598fbab7d
1 { lib, buildPythonPackage, fetchPypi
2 }:
4 buildPythonPackage rec {
5   pname = "shellingham";
6   version = "1.3.2";
7   format = "pyproject";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "576c1982bea0ba82fb46c36feb951319d7f42214a82634233f58b40d858a751e";
12   };
14   meta = with lib; {
15     description = "Tool to Detect Surrounding Shell";
16     homepage = "https://github.com/sarugaku/shellingham";
17     license = licenses.isc;
18     maintainers = with maintainers; [ mbode ];
19   };