nixpkgs/pkgs/development/python-modules/param/default.nix
Martin Weinelt 4105e4e173 python3Packages.param: 2.2.1 -> 2.3.1
https://github.com/holoviz/param/releases/tag/v2.3.1

This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:45 +01:00

54 lines
920 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
hatchling,
hatch-vcs,
# tests
numpy,
pandas,
pytest-asyncio,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "param";
version = "2.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "holoviz";
repo = "param";
tag = "v${version}";
hash = "sha256-lC3XIaL1WQJoNaiiXeMvZ2JNMgHF+mAwLpnMu0sa9wY=";
};
build-system = [
hatchling
hatch-vcs
];
nativeCheckInputs = [
numpy
pandas
pytest-asyncio
pytestCheckHook
];
pytestFlags = [
"-Wignore::DeprecationWarning"
];
pythonImportsCheck = [ "param" ];
meta = {
description = "Declarative Python programming using Parameters";
homepage = "https://param.holoviz.org/";
changelog = "https://github.com/holoviz/param/releases/tag/${src.tag}";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}