aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/science/misc/nextinspace/default.nix
blob: 390b2c58ca682654437dae0ab6c11d3a863f5d40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 ];
  };
}