python312Packages.datashader: 0.18.0 -> 0.18.1

Diff: https://github.com/holoviz/datashader/compare/refs/tags/v0.18.0...refs/tags/v0.18.1
This commit is contained in:
Nick Cao 2025-06-02 18:55:33 -04:00
parent b6c2241ffe
commit b6827f586b
No known key found for this signature in database

View file

@ -1,7 +1,6 @@
{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
hatchling,
hatch-vcs,
@ -24,16 +23,14 @@
buildPythonPackage rec {
pname = "datashader";
version = "0.18.0";
version = "0.18.1";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "holoviz";
repo = "datashader";
tag = "v${version}";
hash = "sha256-HduEO2XDH20tovtlpg5DbF96G5Lpbo+XVmQKnWvfyL8=";
hash = "sha256-nQsVuj4zK5bfF617K71n+El5/ZC7vNia7dhrIqv7t+M=";
};
build-system = [
@ -68,6 +65,7 @@ buildPythonPackage rec {
description = "Data visualization toolchain based on aggregating into a grid";
mainProgram = "datashader";
homepage = "https://datashader.org";
changelog = "https://github.com/holoviz/datashader/blob/${src.tag}/CHANGELOG.rst";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ nickcao ];
};