about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/shellingham/default.nix
blob: 238d394ee11e7253654dc3f9a5a4d32168b87ce2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi
}:

buildPythonPackage rec {
  pname = "shellingham";
  version = "1.3.2";
  format = "pyproject";

  src = fetchPypi {
    inherit pname version;
    sha256 = "576c1982bea0ba82fb46c36feb951319d7f42214a82634233f58b40d858a751e";
  };

  meta = with stdenv.lib; {
    description = "Tool to Detect Surrounding Shell";
    homepage = "https://github.com/sarugaku/shellingham";
    license = licenses.isc;
    maintainers = with maintainers; [ mbode ];
  };
}