about summary refs log tree commit diff
path: root/pkgs/applications/science/misc/nextinspace
diff options
context:
space:
mode:
authorNicolas Martin <penguwin@penguwin.eu>2020-11-11 19:43:00 +0100
committerNicolas Martin <penguwin@penguwin.eu>2020-11-17 15:41:53 +0100
commit9af958340a9ede33e3501ebaa8bdab77f904a85f (patch)
tree1a96e5f93248160bf7ef751a4f214fa416a21c47 /pkgs/applications/science/misc/nextinspace
parent49b6ce8ce7ef9815a80ab04fac62553cfcba268a (diff)
nextinspace: init at 1.0.6
Diffstat (limited to 'pkgs/applications/science/misc/nextinspace')
-rw-r--r--pkgs/applications/science/misc/nextinspace/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/science/misc/nextinspace/default.nix b/pkgs/applications/science/misc/nextinspace/default.nix
new file mode 100644
index 0000000000000..390b2c58ca682
--- /dev/null
+++ b/pkgs/applications/science/misc/nextinspace/default.nix
@@ -0,0 +1,24 @@
+{ lib, fetchPypi, python3Packages }:
+
+python3Packages.buildPythonPackage rec {
+  pname = "nextinspace";
+  version = "1.0.6";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1h3dksxyy5gq071fa7i2p73s50918y1bkk38hgfwr4226c3wipvg";
+  };
+
+  pythonPath = with python3Packages; [
+    requests
+    tzlocal
+    colorama
+  ];
+
+  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 ];
+  };
+}