3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #165367 from SuperSandro2000/blinker

This commit is contained in:
Sandro 2022-03-26 15:27:02 +01:00 committed by GitHub
commit d8302fd5f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, nose, pytestCheckHook }:
{ lib, buildPythonPackage, fetchPypi, nose }:
buildPythonPackage rec {
pname = "blinker";
@ -9,13 +9,18 @@ buildPythonPackage rec {
sha256 = "1dpq0vb01p36jjwbhhd08ylvrnyvcc82yxx3mwjx6awrycjyw6j7";
};
checkInputs = [ nose pytestCheckHook ];
checkInputs = [ nose ];
checkPhase = ''
nosetests
'';
pythonImportsCheck = [ "blinker" ];
meta = with lib; {
homepage = "https://pythonhosted.org/blinker/";
description = "Fast, simple object-to-object and broadcast signaling";
license = licenses.mit;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ SuperSandro2000 ];
};
}