mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-05-13 09:07:02 +00:00
Merge pull request #113693 from SuperSandro2000/blinker
pythonPackages.blinker: execute tests
This commit is contained in:
commit
5a2526670d
1 changed files with 4 additions and 1 deletions
|
@ -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";
|
||||||
|
|
Loading…
Add table
Reference in a new issue