about summary refs log tree commit diff
path: root/pkgs/development/python-modules/bqscales
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-09-15 14:05:52 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-09-27 15:32:51 +0200
commit3c858588b85c8a61cdfa1b4bd07818a8bdcd1bf9 (patch)
tree871555540206afc12e411a26324c39eb9eda80bf /pkgs/development/python-modules/bqscales
parentd10b952be9184d61b7a90c664bdc409f013d9c2f (diff)
python3Packages.bqscales: 0.3.1 -> 0.3.3
Diffstat (limited to 'pkgs/development/python-modules/bqscales')
-rw-r--r--pkgs/development/python-modules/bqscales/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/bqscales/default.nix b/pkgs/development/python-modules/bqscales/default.nix
index 8b0ebb610ad9d..c8fa7879bd754 100644
--- a/pkgs/development/python-modules/bqscales/default.nix
+++ b/pkgs/development/python-modules/bqscales/default.nix
@@ -3,6 +3,8 @@
 , pythonOlder
 , fetchPypi
 , hatchling
+, hatch-jupyter-builder
+, jupyterlab
 , jupyter-packaging
 , ipywidgets
 , numpy
@@ -12,13 +14,13 @@
 
 buildPythonPackage rec {
   pname = "bqscales";
-  version = "0.3.1";
+  version = "0.3.3";
   format = "pyproject";
   disabled = pythonOlder "3.6";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-C+/GLpqYpePngbn5W0MwvpdmVgFZF7aGHyKMgO5XM90=";
+    hash = "sha256-SlnNw4dWOzRedwIN3kCyl95qVqkY92QGOMS3Eyoqk0I=";
   };
 
   # We relax dependencies here instead of pulling in a patch because upstream
@@ -35,7 +37,9 @@ buildPythonPackage rec {
   '';
 
   nativeBuildInputs = [
+    hatch-jupyter-builder
     hatchling
+    jupyterlab
     jupyter-packaging
   ];