Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 21 lines 528 B view raw
1{ lib, buildPythonPackage, fetchPypi, mock, six }: 2 3buildPythonPackage rec { 4 pname = "whisper"; 5 version = "1.1.7"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "08biw3g6x6p2aa1nlvfazbgcs1xvf6m0hvskdjhgwnsbwxk1xq46"; 10 }; 11 12 propagatedBuildInputs = [ six ]; 13 checkInputs = [ mock ]; 14 15 meta = with lib; { 16 homepage = "http://graphite.wikidot.com/"; 17 description = "Fixed size round-robin style database"; 18 maintainers = with maintainers; [ offline basvandijk ]; 19 license = licenses.asl20; 20 }; 21}