1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-15 00:54:46 +00:00
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-01-17 15:13:09 +00:00
version = "1.1.5";
src = fetchPypi {
inherit pname version;
2019-01-17 15:13:09 +00:00
sha256 = "14013e7563102d808aae0cb5b3b2326979236d4bcd54c343ea636761629920cd";
};
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;
};
}