8 buildPythonPackage rec {
11 format = "setuptools";
13 disabled = pythonOlder "3.7";
15 src = fetchFromGitHub {
18 rev = "refs/tags/v${version}";
19 hash = "sha256-5b3UTzb7OXBwcyYyDVCGLUpWxNOYZ3cv8Gfw+x7jsBI=";
27 # Version is not set properly
28 substituteInPlace setup.py \
29 --replace 'version=get_setup_version("param"),' 'version="${version}",'
32 pythonImportsCheck = [
37 description = "Declarative Python programming using Parameters";
38 homepage = "https://param.holoviz.org/";
39 changelog = "https://github.com/holoviz/param/releases/tag/v${version}";
40 license = licenses.bsd3;
41 maintainers = with maintainers; [ ];