Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nextinspace: init at 1.0.3 #101802

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
26 changes: 26 additions & 0 deletions pkgs/applications/science/misc/nextinspace/default.nix
@@ -0,0 +1,26 @@
{ lib, fetchPypi, python3Packages }:

python3Packages.buildPythonPackage rec {
pname = "nextinspace";
version = "1.0.3";

src = fetchPypi {
inherit pname version;
sha256 = "1435ajd5d8r0zqi3jy7ppf7s5q7pa3hxysvb5kxiz1k3c23bszw8";
};

pythonPath = with python3Packages; [
requests
tzlocal
colorama
];

vendorSha256 = "0z3r8fvpy36ybgb18sr0lril1sg8z7s99xv1a6g1v3zdnj3zimav";

meta = with lib; {
description = "Print upcoming space-related events in your terminal";
homepage = "https://github.com/The-Kid-Gid/nextinspace";
license = licenses.gpl3;
maintainers = with maintainers; [ penguwin ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -26812,6 +26812,8 @@ in

netlogo = callPackage ../applications/science/misc/netlogo { };

nextinspace = python3Packages.callPackage ../applications/science/misc/nextinspace { };

ns-3 = callPackage ../development/libraries/science/networking/ns-3 { python = python3; };

root = callPackage ../applications/science/misc/root {
Expand Down