nextinspace: init at 1.0.6

+26
+24
pkgs/applications/science/misc/nextinspace/default.nix
··· 1 + { lib, fetchPypi, python3Packages }: 2 + 3 + python3Packages.buildPythonPackage rec { 4 + pname = "nextinspace"; 5 + version = "1.0.6"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "1h3dksxyy5gq071fa7i2p73s50918y1bkk38hgfwr4226c3wipvg"; 10 + }; 11 + 12 + pythonPath = with python3Packages; [ 13 + requests 14 + tzlocal 15 + colorama 16 + ]; 17 + 18 + meta = with lib; { 19 + description = "Print upcoming space-related events in your terminal"; 20 + homepage = "https://github.com/The-Kid-Gid/nextinspace"; 21 + license = licenses.gpl3; 22 + maintainers = with maintainers; [ penguwin ]; 23 + }; 24 + }
+2
pkgs/top-level/all-packages.nix
··· 26973 26973 26974 26974 netlogo = callPackage ../applications/science/misc/netlogo { }; 26975 26975 26976 + nextinspace = python3Packages.callPackage ../applications/science/misc/nextinspace { }; 26977 + 26976 26978 ns-3 = callPackage ../development/libraries/science/networking/ns-3 { python = python3; }; 26977 26979 26978 26980 root = callPackage ../applications/science/misc/root {