about summary refs log tree commit diff
path: root/pkgs/development/python-modules/myst-nb/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/myst-nb/default.nix')
-rw-r--r--pkgs/development/python-modules/myst-nb/default.nix45
1 files changed, 22 insertions, 23 deletions
diff --git a/pkgs/development/python-modules/myst-nb/default.nix b/pkgs/development/python-modules/myst-nb/default.nix
index 8f23ad5dee84..520919e7fa46 100644
--- a/pkgs/development/python-modules/myst-nb/default.nix
+++ b/pkgs/development/python-modules/myst-nb/default.nix
@@ -1,24 +1,25 @@
-{ lib
-, buildPythonPackage
-, pythonOlder
-, fetchPypi
-, flit-core
-, importlib-metadata
-, ipython
-, jupyter-cache
-, nbclient
-, myst-parser
-, nbformat
-, pyyaml
-, sphinx
-, sphinx-togglebutton
-, typing-extensions
-, ipykernel
+{
+  lib,
+  buildPythonPackage,
+  pythonOlder,
+  fetchPypi,
+  flit-core,
+  importlib-metadata,
+  ipython,
+  jupyter-cache,
+  nbclient,
+  myst-parser,
+  nbformat,
+  pyyaml,
+  sphinx,
+  sphinx-togglebutton,
+  typing-extensions,
+  ipykernel,
 }:
 
 buildPythonPackage rec {
   pname = "myst-nb";
-  version = "1.1.0";
+  version = "1.1.2";
   pyproject = true;
 
   disabled = pythonOlder "3.9";
@@ -26,12 +27,10 @@ buildPythonPackage rec {
   src = fetchPypi {
     inherit version;
     pname = "myst_nb";
-    hash = "sha256-kniEDoRPXXgLWsxUAMv2PZfKrM+OtEKlXr2aA+JSLV4=";
+    hash = "sha256-lhtABWVwKcqJiSpMde2/CFbFTOr2FyNotGv3Z2wfdwA=";
   };
 
-  nativeBuildInputs = [
-    flit-core
-  ];
+  nativeBuildInputs = [ flit-core ];
 
   propagatedBuildInputs = [
     importlib-metadata
@@ -53,10 +52,10 @@ buildPythonPackage rec {
   ];
 
   meta = with lib; {
-    description = "A Jupyter Notebook Sphinx reader built on top of the MyST markdown parser";
+    description = "Jupyter Notebook Sphinx reader built on top of the MyST markdown parser";
     homepage = "https://github.com/executablebooks/MyST-NB";
     changelog = "https://github.com/executablebooks/MyST-NB/raw/v${version}/CHANGELOG.md";
     license = licenses.mit;
-    maintainers = with maintainers; [ ];
+    maintainers = [ ];
   };
 }