nixpkgs/pkgs/development/python-modules/blinker/default.nix
2022-07-21 22:35:26 +02:00

27 lines
565 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "blinker";
version = "1.5";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-kj5eL2nBVfLMQtr7vXDhbj/eJNLUqiq3L744YjiJJGI=";
};
checkInputs = [ pytestCheckHook ];
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; [ SuperSandro2000 ];
};
}