summary refs log tree commit diff
path: root/pkgs/development/python-modules/pymetar/default.nix
blob: a918528bdf8740799b486e89a997f8429cd12839 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, isPy3k, fetchPypi }:

buildPythonPackage rec {
  pname = "pymetar";
  version = "0.21";

  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "1sh3nm5ilnsgpnzbb2wv4xndnizjayw859qp72798jadqpcph69k";
  };

  meta = with stdenv.lib; {
    description = "A command-line tool to show the weather report by a given station ID";
    homepage = http://www.schwarzvogel.de/software/pymetar.html;
    license = licenses.gpl2;
    maintainers = with maintainers; [ erosennin ];
  };
}