nextinspace: init at 1.0.6
This commit is contained in:
parent
49b6ce8ce7
commit
9af958340a
24
pkgs/applications/science/misc/nextinspace/default.nix
Normal file
24
pkgs/applications/science/misc/nextinspace/default.nix
Normal file
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -26973,6 +26973,8 @@ in
|
|||||||
|
|
||||||
netlogo = callPackage ../applications/science/misc/netlogo { };
|
netlogo = callPackage ../applications/science/misc/netlogo { };
|
||||||
|
|
||||||
|
nextinspace = python3Packages.callPackage ../applications/science/misc/nextinspace { };
|
||||||
|
|
||||||
ns-3 = callPackage ../development/libraries/science/networking/ns-3 { python = python3; };
|
ns-3 = callPackage ../development/libraries/science/networking/ns-3 { python = python3; };
|
||||||
|
|
||||||
root = callPackage ../applications/science/misc/root {
|
root = callPackage ../applications/science/misc/root {
|
||||||
|
Loading…
Reference in New Issue
Block a user