diff options
Diffstat (limited to 'gnu/packages/monitoring.scm')
| -rw-r--r-- | gnu/packages/monitoring.scm | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm index 79e12982529..37000f8b68b 100644 --- a/gnu/packages/monitoring.scm +++ b/gnu/packages/monitoring.scm | |||
| @@ -489,16 +489,30 @@ network/disk rates.") | |||
| 489 | (define-public python-whisper | 489 | (define-public python-whisper |
| 490 | (package | 490 | (package |
| 491 | (name "python-whisper") | 491 | (name "python-whisper") |
| 492 | (version "1.1.8") | 492 | (version "1.1.10") |
| 493 | (source | 493 | (source |
| 494 | (origin | 494 | (origin |
| 495 | (method url-fetch) | 495 | (method git-fetch) |
| 496 | (uri (pypi-uri "whisper" version)) | 496 | (uri (git-reference |
| 497 | (url "https://github.com/graphite-project/whisper") | ||
| 498 | (commit version))) | ||
| 499 | (file-name (git-file-name name version)) | ||
| 497 | (sha256 | 500 | (sha256 |
| 498 | (base32 | 501 | (base32 |
| 499 | "1bk29w09zcpsv8hp0g0al7nwrxa07z0ycls3mbh83wfavk83aprl")))) | 502 | "182phj3z3mxpbla6m2f0pahyvqfn0jdblprvk6xwx39nc939nw0a")))) |
| 500 | (build-system python-build-system) | 503 | (build-system pyproject-build-system) |
| 501 | (native-inputs (list python-six)) | 504 | (arguments |
| 505 | (list | ||
| 506 | #:phases | ||
| 507 | #~(modify-phases %standard-phases | ||
| 508 | (add-after 'unpack 'remove-python-six-dependency | ||
| 509 | (lambda _ | ||
| 510 | (substitute* (find-files "." "\\.py$") | ||
| 511 | (("'six'") "") ; dependency in setup.py | ||
| 512 | (("six\\.moves") "io") | ||
| 513 | (("from six import assertRegex") "") | ||
| 514 | (("assertRegex") ""))))))) ; effectively disable test | ||
| 515 | (native-inputs (list python-pytest python-setuptools)) | ||
| 502 | (home-page "https://graphiteapp.org/") | 516 | (home-page "https://graphiteapp.org/") |
| 503 | (synopsis "Fixed size round-robin style database for Graphite") | 517 | (synopsis "Fixed size round-robin style database for Graphite") |
| 504 | (description "Whisper is one of three components within the Graphite | 518 | (description "Whisper is one of three components within the Graphite |
