nixpkgs/pkgs/development/python-modules/blinker/default.nix
2023-07-23 19:30:22 +02:00

27 lines
553 B
Nix

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