40 lines
		
	
	
		
			717 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			717 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib
 | 
						|
, buildPythonPackage
 | 
						|
, fetchPypi
 | 
						|
, traitlets
 | 
						|
, jupyter_core
 | 
						|
, pyzmq
 | 
						|
, dateutil
 | 
						|
, isPyPy
 | 
						|
, py
 | 
						|
, tornado
 | 
						|
}:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "jupyter_client";
 | 
						|
  version = "5.3.4";
 | 
						|
 | 
						|
  src = fetchPypi {
 | 
						|
    inherit pname version;
 | 
						|
    sha256 = "60e6faec1031d63df57f1cc671ed673dced0ed420f4377ea33db37b1c188b910";
 | 
						|
  };
 | 
						|
 | 
						|
  propagatedBuildInputs = [
 | 
						|
    traitlets
 | 
						|
    jupyter_core
 | 
						|
    pyzmq
 | 
						|
    dateutil
 | 
						|
    tornado
 | 
						|
  ] ++ lib.optional isPyPy py;
 | 
						|
 | 
						|
  # Circular dependency with ipykernel
 | 
						|
  doCheck = false;
 | 
						|
 | 
						|
  meta = {
 | 
						|
    description = "Jupyter protocol implementation and client libraries";
 | 
						|
    homepage = "https://jupyter.org/";
 | 
						|
    license = lib.licenses.bsd3;
 | 
						|
    maintainers = with lib.maintainers; [  ];
 | 
						|
  };
 | 
						|
}
 |