tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
nextinspace: init at 1.0.6
Nicolas Martin
5 years ago
9af95834
49b6ce8c
+26
2 changed files
expand all
collapse all
unified
split
pkgs
applications
science
misc
nextinspace
default.nix
top-level
all-packages.nix
+24
pkgs/applications/science/misc/nextinspace/default.nix
···
1
1
+
{ lib, fetchPypi, python3Packages }:
2
2
+
3
3
+
python3Packages.buildPythonPackage rec {
4
4
+
pname = "nextinspace";
5
5
+
version = "1.0.6";
6
6
+
7
7
+
src = fetchPypi {
8
8
+
inherit pname version;
9
9
+
sha256 = "1h3dksxyy5gq071fa7i2p73s50918y1bkk38hgfwr4226c3wipvg";
10
10
+
};
11
11
+
12
12
+
pythonPath = with python3Packages; [
13
13
+
requests
14
14
+
tzlocal
15
15
+
colorama
16
16
+
];
17
17
+
18
18
+
meta = with lib; {
19
19
+
description = "Print upcoming space-related events in your terminal";
20
20
+
homepage = "https://github.com/The-Kid-Gid/nextinspace";
21
21
+
license = licenses.gpl3;
22
22
+
maintainers = with maintainers; [ penguwin ];
23
23
+
};
24
24
+
}
+2
pkgs/top-level/all-packages.nix
···
26973
26973
26974
26974
netlogo = callPackage ../applications/science/misc/netlogo { };
26975
26975
26976
26976
+
nextinspace = python3Packages.callPackage ../applications/science/misc/nextinspace { };
26977
26977
+
26976
26978
ns-3 = callPackage ../development/libraries/science/networking/ns-3 { python = python3; };
26977
26979
26978
26980
root = callPackage ../applications/science/misc/root {