python3Packages.vega-datasets: remove with statements

This commit is contained in:
Philip Taron 2024-08-16 14:04:20 -07:00
parent c434f3c029
commit 49ddbfef6c
No known key found for this signature in database

View File

@ -29,14 +29,13 @@ buildPythonPackage rec {
pythonImportsCheck = [ "vega_datasets" ];
meta =
with lib;
let
tag = removeSuffix ".0" "v${version}";
tag = lib.removeSuffix ".0" "v${version}";
in
{
description = "Python package for offline access to vega datasets";
homepage = "https://github.com/altair-viz/vega_datasets";
changelog = "https://github.com/altair-viz/vega_datasets/blob/${tag}/CHANGES.md";
license = licenses.mit;
license = lib.licenses.mit;
};
}