python313Packages.python-nvd3: 0.15.0 -> 0.16.0

Diff: https://github.com/areski/python-nvd3/compare/v0.15.0...v0.16.0

Changelog: https://github.com/areski/python-nvd3/releases/tag/v0.16.0

Changed files
+8 -7
pkgs
development
python-modules
python-nvd3
+8 -7
pkgs/development/python-modules/python-nvd3/default.nix
···
pytestCheckHook,
}:
-
buildPythonPackage {
+
buildPythonPackage rec {
pname = "python-nvd3";
-
version = "0.15.0";
+
version = "0.16.0";
pyproject = true;
src = fetchFromGitHub {
owner = "areski";
repo = "python-nvd3";
-
rev = "dc8e772597ed72f413b229856fc9a3318e57fcfc";
-
sha256 = "1vjnicszcc9j0rgb58104fk9sry5xad1xli64jana9bkx42c6x1v";
+
tag = "v${version}";
+
hash = "sha256-+J0lHAOjX3hbymjESQ6WpEnly+1Lv9o0ucIpBxTuS6s=";
};
build-system = [ setuptools ];
···
enabledTestPaths = [ "tests.py" ];
meta = {
+
description = "Python Wrapper for NVD3";
homepage = "https://github.com/areski/python-nvd3";
-
description = "Python Wrapper for NVD3 - It's time for beautiful charts";
+
changelog = "https://github.com/areski/python-nvd3/releases/tag/${src.tag}";
+
license = lib.licenses.mit;
+
maintainers = with lib.maintainers; [ ivan-tkatchev ];
mainProgram = "nvd3";
-
license = lib.licenses.mit;
-
maintainers = [ lib.maintainers.ivan-tkatchev ];
};
}