1
0
Fork 1
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:
Sandro 2021-02-19 19:13:41 +01:00 committed by GitHub
commit 5a2526670d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";