depot/third_party/nixpkgs/pkgs/development/python-modules/blinker/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

26 lines
571 B
Nix

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