lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

python311Packages.jupyter-cache: 0.6.1 -> 1.0.0

Changelog: https://github.com/executablebooks/jupyter-cache/blob/v1.0.0/CHANGELOG.md

authored by

Mario Rodas and committed by
Jonathan Ringer
7c5fb111 40099531

+7 -5
+7 -5
pkgs/development/python-modules/jupyter-cache/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "jupyter-cache"; 18 - version = "0.6.1"; 19 - format = "pyproject"; 18 + version = "1.0.0"; 19 + pyproject = true; 20 20 21 - disabled = pythonOlder "3.7"; 21 + disabled = pythonOlder "3.9"; 22 22 23 23 src = fetchPypi { 24 - inherit pname version; 25 - sha256 = "sha256-Jvg5ARQ+30ry8/9akeLSrSmORuLO4DyAcdN6I6Y8y/w="; 24 + inherit version; 25 + pname = "jupyter_cache"; 26 + hash = "sha256-0Pp9dTPNV5gZjYiJMYJpqME4LtOyL2IsCak1ZSH0hoc="; 26 27 }; 27 28 28 29 nativeBuildInputs = [ ··· 45 46 meta = with lib; { 46 47 description = "A defined interface for working with a cache of jupyter notebooks"; 47 48 homepage = "https://github.com/executablebooks/jupyter-cache"; 49 + changelog = "https://github.com/executablebooks/jupyter-cache/blob/v${version}/CHANGELOG.md"; 48 50 license = licenses.mit; 49 51 maintainers = with maintainers; [ marsam ]; 50 52 };