python.pkgs.scikitlearn: add meta.changelog

This commit is contained in:
Timo Kaufmann 2020-05-10 20:41:31 +02:00
parent 7341598420
commit 47548caf3b

View File

@ -61,6 +61,12 @@ buildPythonPackage rec {
meta = with stdenv.lib; {
description = "A set of python modules for machine learning and data mining";
changelog = let
major = versions.major version;
minor = versions.minor version;
dashVer = replaceChars ["."] ["-"] version;
in
"https://scikit-learn.org/stable/whats_new/v${major}.${minor}.html#version-${dashVer}";
homepage = "https://scikit-learn.org";
license = licenses.bsd3;
maintainers = with maintainers; [ ];