Merge pull request #206035 from r-ryantm/auto-update/python310Packages.param

python310Packages.param: 1.12.2 -> 1.12.3
This commit is contained in:
Jörg Thalheim 2022-12-14 22:23:44 +00:00 committed by GitHub
commit 08b27ffcfd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,17 +2,21 @@
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, pytestCheckHook , pytestCheckHook
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "param"; pname = "param";
version = "1.12.2"; version = "1.12.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "holoviz"; owner = "holoviz";
repo = pname; repo = pname;
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
sha256 = "sha256-NrMsIDcpZc/R2j8VuXitbnIlhP3NtLxU/OkygXqYok8="; hash = "sha256-XVHYx0M/BLjNNneObxygPHtid65ti7nctKsUMF21fmw=";
}; };
checkInputs = [ checkInputs = [
@ -32,6 +36,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Declarative Python programming using Parameters"; description = "Declarative Python programming using Parameters";
homepage = "https://github.com/pyviz/param"; homepage = "https://github.com/pyviz/param";
changelog = "https://github.com/holoviz/param/releases/tag/v${version}";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ costrouc ]; maintainers = with maintainers; [ costrouc ];
}; };