pythonPackages.blinker: execute tests

This commit is contained in:
Sandro Jäckel 2021-02-19 16:13:19 +01:00 committed by github-actions[bot]
parent 7d4b0acfb5
commit c6275cf3d2

View File

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi }: { lib, buildPythonPackage, fetchPypi, nose, pytestCheckHook }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "blinker"; pname = "blinker";
@ -9,6 +9,9 @@ buildPythonPackage rec {
sha256 = "1dpq0vb01p36jjwbhhd08ylvrnyvcc82yxx3mwjx6awrycjyw6j7"; sha256 = "1dpq0vb01p36jjwbhhd08ylvrnyvcc82yxx3mwjx6awrycjyw6j7";
}; };
checkInputs = [ nose pytestCheckHook ];
pythonImportsCheck = [ "blinker" ];
meta = with lib; { meta = with lib; {
homepage = "https://pythonhosted.org/blinker/"; homepage = "https://pythonhosted.org/blinker/";
description = "Fast, simple object-to-object and broadcast signaling"; description = "Fast, simple object-to-object and broadcast signaling";