2021-02-19 15:13:19 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, nose, pytestCheckHook }:
|
2018-03-31 12:11:43 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "blinker";
|
|
|
|
version = "1.4";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "1dpq0vb01p36jjwbhhd08ylvrnyvcc82yxx3mwjx6awrycjyw6j7";
|
|
|
|
};
|
|
|
|
|
2021-02-19 15:13:19 +00:00
|
|
|
checkInputs = [ nose pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "blinker" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://pythonhosted.org/blinker/";
|
2018-03-31 12:11:43 +01:00
|
|
|
description = "Fast, simple object-to-object and broadcast signaling";
|
|
|
|
license = licenses.mit;
|
2019-07-03 10:27:39 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-03-31 12:11:43 +01:00
|
|
|
};
|
|
|
|
}
|