ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / jupyterlab_launcher / default.nix
blob15b53f523b573f67886710718c8dd0cc039dfec1
1 { lib, buildPythonPackage, fetchPypi, jsonschema, notebook, pythonOlder }:
2 buildPythonPackage rec {
3   pname = "jupyterlab_launcher";
4   version = "0.13.1";
5   disabled = pythonOlder "3.5";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "f880eada0b8b1f524d5951dc6fcae0d13b169897fc8a247d75fb5beadd69c5f0";
10   };
12   propagatedBuildInputs = [
13     jsonschema
14     notebook
15   ];
17   # depends on requests and a bunch of other libraries
18   doCheck = false;
20   meta = with lib; {
21     description = "This package is used to launch an application built using JupyterLab";
22     license = with licenses; [ bsd3 ];
23     homepage = "https://jupyter.org/";
24     maintainers = with maintainers; [ zimbatm ];
25   };