Files
nixpkgs/pkgs/development/python-modules/shellingham/default.nix
T

21 lines
496 B
Nix
Raw Normal View History

2018-09-22 09:41:55 +02:00
{ stdenv, buildPythonPackage, fetchPypi
}:
buildPythonPackage rec {
pname = "shellingham";
2020-05-09 12:01:59 +02:00
version = "1.3.2";
format = "pyproject";
2018-09-22 09:41:55 +02:00
src = fetchPypi {
inherit pname version;
2020-05-09 12:01:59 +02:00
sha256 = "576c1982bea0ba82fb46c36feb951319d7f42214a82634233f58b40d858a751e";
2018-09-22 09:41:55 +02:00
};
meta = with stdenv.lib; {
description = "Tool to Detect Surrounding Shell";
homepage = "https://github.com/sarugaku/shellingham";
2018-09-22 09:41:55 +02:00
license = licenses.isc;
maintainers = with maintainers; [ mbode ];
};
}