From 358dee19797e964402fc2b2732a696ca11722a34 Mon Sep 17 00:00:00 2001 From: natsukium Date: Mon, 16 Oct 2023 17:02:59 +0900 Subject: [PATCH 1/2] python311Packages.altair: add changelog to meta --- pkgs/development/python-modules/altair/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/altair/default.nix b/pkgs/development/python-modules/altair/default.nix index 14d65a2e1af1..522cfe3cc288 100644 --- a/pkgs/development/python-modules/altair/default.nix +++ b/pkgs/development/python-modules/altair/default.nix @@ -74,6 +74,7 @@ buildPythonPackage rec { description = "A declarative statistical visualization library for Python."; homepage = "https://altair-viz.github.io"; downloadPage = "https://github.com/altair-viz/altair"; + changelog = "https://altair-viz.github.io/releases/changes.html"; license = licenses.bsd3; maintainers = with maintainers; [ teh vinetos ]; }; From c48b4498c122521290f942999926922f4decae20 Mon Sep 17 00:00:00 2001 From: natsukium Date: Mon, 16 Oct 2023 17:04:02 +0900 Subject: [PATCH 2/2] python311Packages.altair: unstable-2023-08-12 -> 5.1.2 Diff: https://github.com/altair-viz/altair/compare/56b3b66daae7160c8d82777d2646131afcc3dab4...v5.1.2 Changelog: https://altair-viz.github.io/releases/changes.html --- pkgs/development/python-modules/altair/default.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/altair/default.nix b/pkgs/development/python-modules/altair/default.nix index 522cfe3cc288..8d7ec25da838 100644 --- a/pkgs/development/python-modules/altair/default.nix +++ b/pkgs/development/python-modules/altair/default.nix @@ -23,17 +23,15 @@ buildPythonPackage rec { pname = "altair"; - # current version, 5.0.1, is broken with jsonschema>=4.18 - # we use unstable version instead of patch due to many changes - version = "unstable-2023-08-12"; + version = "5.1.2"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "altair-viz"; repo = "altair"; - rev = "56b3b66daae7160c8d82777d2646131afcc3dab4"; - hash = "sha256-uVE3Bth1D1mIhaULB4IxEtOzhQd51Pscqyfdys65F6A="; + rev = "refs/tags/v${version}"; + hash = "sha256-30M+rt5IfD4hvK5CwaW8HfQacDBPjowff/f9o7iido0="; }; nativeBuildInputs = [