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

buildPythonPackage rec {
  pname = "whisper";
  version = "1.1.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "08biw3g6x6p2aa1nlvfazbgcs1xvf6m0hvskdjhgwnsbwxk1xq46";
  };

  propagatedBuildInputs = [ six ];
  checkInputs = [ mock ];

  meta = with lib; {
    homepage = "http://graphite.wikidot.com/";
    description = "Fixed size round-robin style database";
    maintainers = with maintainers; [ offline basvandijk ];
    license = licenses.asl20;
  };
}