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

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

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

  propagatedBuildInputs = [ six ];

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