nixpkgs/pkgs/development/python-modules/shellingham/default.nix
R. RyanTM 5fb98570b4 python37Packages.shellingham: 1.3.0 -> 1.3.1
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
2019-04-16 18:33:13 +02:00

20 lines
458 B
Nix

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