nixpkgs/pkgs/development/python-modules/whisper/default.nix

22 lines
548 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, mock, six }:
buildPythonPackage rec {
pname = "whisper";
2019-11-11 11:13:42 +00:00
version = "1.1.6";
src = fetchPypi {
inherit pname version;
2019-11-11 11:13:42 +00:00
sha256 = "8dbb3b7cf4a02a080162467fff5cd38bf77940c3e2b25f7c4f78529427ca9cfe";
};
propagatedBuildInputs = [ six ];
2018-12-03 11:00:03 +00:00
checkInputs = [ mock ];
meta = with stdenv.lib; {
homepage = http://graphite.wikidot.com/;
description = "Fixed size round-robin style database";
maintainers = with maintainers; [ offline basvandijk ];
license = licenses.asl20;
};
}