2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, mock, six }:
|
2018-08-02 15:39:57 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "whisper";
|
2020-04-07 10:04:32 +01:00
|
|
|
version = "1.1.7";
|
2018-08-02 15:39:57 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-04-07 10:04:32 +01:00
|
|
|
sha256 = "08biw3g6x6p2aa1nlvfazbgcs1xvf6m0hvskdjhgwnsbwxk1xq46";
|
2018-08-02 15:39:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ six ];
|
2018-12-03 11:00:03 +00:00
|
|
|
checkInputs = [ mock ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-07 10:04:32 +01:00
|
|
|
homepage = "http://graphite.wikidot.com/";
|
2018-08-02 15:39:57 +01:00
|
|
|
description = "Fixed size round-robin style database";
|
2019-08-20 14:24:01 +01:00
|
|
|
maintainers = with maintainers; [ offline basvandijk ];
|
2018-08-02 15:39:57 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|