about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/whisper/default.nix
blob: d25053f1236417093e25f9edf23d90007e6b5b08 (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.8";

  src = fetchPypi {
    inherit pname version;
    sha256 = "345f35d0dccaf181e0aa4353e6c13f40f5cceda10a3c7021dafab29f004f62ae";
  };

  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;
  };
}