3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.shellingham: init at 1.2.6

This commit is contained in:
Maximilian Bode 2018-09-22 09:41:55 +02:00
parent be1f39244f
commit af7adc206d
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ stdenv, buildPythonPackage, fetchPypi
}:
buildPythonPackage rec {
pname = "shellingham";
version = "1.2.6";
src = fetchPypi {
inherit pname version;
sha256 = "0x1hja3jzvh7xmd0sxnfw9hi3k419s95vb7jjzh76yydzvss1r2q";
};
meta = with stdenv.lib; {
description = "Tool to Detect Surrounding Shell";
homepage = https://github.com/sarugaku/shellingham;
license = licenses.isc;
maintainers = with maintainers; [ mbode ];
};
}

View file

@ -560,6 +560,8 @@ in {
serversyncstorage = callPackage ../development/python-modules/serversyncstorage {};
shellingham = callPackage ../development/python-modules/shellingham {};
simpleeval = callPackage ../development/python-modules/simpleeval { };
singledispatch = callPackage ../development/python-modules/singledispatch { };