Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 19 lines 458 B view raw
1{ stdenv, buildPythonPackage, fetchPypi 2}: 3 4buildPythonPackage rec { 5 pname = "shellingham"; 6 version = "1.3.1"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "1q7kws7w4x2hji3g7y0ni9ddk4sd676ylrb3db54gbpys6xj6nwq"; 11 }; 12 13 meta = with stdenv.lib; { 14 description = "Tool to Detect Surrounding Shell"; 15 homepage = https://github.com/sarugaku/shellingham; 16 license = licenses.isc; 17 maintainers = with maintainers; [ mbode ]; 18 }; 19}