mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
36f54007f9
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.6-shellingham/versions
20 lines
458 B
Nix
20 lines
458 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "shellingham";
|
|
version = "1.2.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "06biyiwq9571mryzbr50am3mxpc3blscwqhiq8c66ac4xm3maszm";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Tool to Detect Surrounding Shell";
|
|
homepage = https://github.com/sarugaku/shellingham;
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ mbode ];
|
|
};
|
|
}
|