nixpkgs/pkgs/development/python-modules/shellingham/default.nix
R. RyanTM f09e4a42af python37Packages.shellingham: 1.2.7 -> 1.2.8
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-shellingham/versions
2018-12-25 10:05:18 +01:00

20 lines
458 B
Nix

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