From fbf8b3149383e8f4595e3283965eab276f407830 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Thu, 26 Aug 2021 16:04:03 +0200 Subject: [PATCH] python39Packages.pyacoustid: update meta, disable checks, add import check --- pkgs/development/python-modules/pyacoustid/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pyacoustid/default.nix b/pkgs/development/python-modules/pyacoustid/default.nix index 9caa3c8c292c..752c276415f9 100644 --- a/pkgs/development/python-modules/pyacoustid/default.nix +++ b/pkgs/development/python-modules/pyacoustid/default.nix @@ -23,10 +23,15 @@ buildPythonPackage rec { acoustid.py ''; + # package has no tests + doCheck = false; + + pythonImportsCheck = [ "acoustid" ]; + meta = with lib; { description = "Bindings for Chromaprint acoustic fingerprinting"; homepage = "https://github.com/sampsyo/pyacoustid"; license = licenses.mit; + maintainers = with maintainers; [ ]; }; - }