biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / comm / default.nix
blobf18517eca1e79ebe499fbe5e3d909eb478d0acd3
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   hatchling,
6   traitlets,
7   pytestCheckHook,
8 }:
10 let
11   pname = "comm";
12   version = "0.2.2";
14 buildPythonPackage {
15   inherit pname version;
16   format = "pyproject";
18   src = fetchFromGitHub {
19     owner = "ipython";
20     repo = "comm";
21     rev = "refs/tags/v${version}";
22     hash = "sha256-51HSSULhbKb1NdLJ//b3Vh6sOLWp0B4KW469htpduqM=";
23   };
25   nativeBuildInputs = [ hatchling ];
27   propagatedBuildInputs = [ traitlets ];
29   nativeCheckInputs = [ pytestCheckHook ];
31   meta = with lib; {
32     description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc";
33     homepage = "https://github.com/ipython/comm";
34     license = licenses.bsd3;
35     maintainers = [ ];
36   };