ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / whisper / default.nix
blobb36a5c9a23c82780203a56cf9645409a22380190
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , mock
5 , six
6 , pytestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "whisper";
11   version = "1.1.10";
13   src = fetchFromGitHub {
14     owner = "graphite-project";
15     repo = pname;
16     rev = "refs/tags/${version}";
17     sha256 = "sha256-CnCbRmI2jc67mTtfupoE1uHtobrAiWoUXbfX8YeEV6A=";
18   };
20   propagatedBuildInputs = [
21     six
22   ];
24   checkInputs = [
25     mock
26     pytestCheckHook
27   ];
29   disabledTests = [
30     # whisper-resize.py: not found
31     "test_resize_with_aggregate"
32   ];
34   pythonImportsCheck = [ "whisper" ];
36   meta = with lib; {
37     homepage = "https://github.com/graphite-project/whisper";
38     description = "Fixed size round-robin style database";
39     maintainers = with maintainers; [ offline basvandijk ];
40     license = licenses.asl20;
41   };