mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
Merge pull request #113693 from SuperSandro2000/blinker
pythonPackages.blinker: execute tests
This commit is contained in:
commit
5a2526670d
|
@ -1,4 +1,4 @@
|
|||
{ lib, buildPythonPackage, fetchPypi }:
|
||||
{ lib, buildPythonPackage, fetchPypi, nose, pytestCheckHook }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "blinker";
|
||||
|
@ -9,6 +9,9 @@ buildPythonPackage rec {
|
|||
sha256 = "1dpq0vb01p36jjwbhhd08ylvrnyvcc82yxx3mwjx6awrycjyw6j7";
|
||||
};
|
||||
|
||||
checkInputs = [ nose pytestCheckHook ];
|
||||
pythonImportsCheck = [ "blinker" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://pythonhosted.org/blinker/";
|
||||
description = "Fast, simple object-to-object and broadcast signaling";
|
||||
|
|
Loading…
Reference in a new issue