1{ stdenv, buildPythonPackage, fetchPypi, mock, six }:
2
3buildPythonPackage rec {
4 pname = "whisper";
5 version = "1.1.5";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "14013e7563102d808aae0cb5b3b2326979236d4bcd54c343ea636761629920cd";
10 };
11
12 propagatedBuildInputs = [ six ];
13 checkInputs = [ mock ];
14
15 meta = with stdenv.lib; {
16 homepage = http://graphite.wikidot.com/;
17 description = "Fixed size round-robin style database";
18 maintainers = with maintainers; [ rickynils offline basvandijk ];
19 license = licenses.asl20;
20 };
21}