about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2022-12-14 22:23:44 +0000
committerGitHub <noreply@github.com>2022-12-14 22:23:44 +0000
commit08b27ffcfdc7d24d24271f0a596fd97a15601ee1 (patch)
treeae27d1a732b7a67e0e3e6cbc8787c16624b2ca4b /pkgs
parent79b3d4bcae8c7007c9fd51c279a8a67acfa73a2a (diff)
parente55d03eeda2649384ffb00e6d6c9cf4017c49f4e (diff)
Merge pull request #206035 from r-ryantm/auto-update/python310Packages.param
python310Packages.param: 1.12.2 -> 1.12.3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/param/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/param/default.nix b/pkgs/development/python-modules/param/default.nix
index dc1e8c9ae5174..76095f62e8d5f 100644
--- a/pkgs/development/python-modules/param/default.nix
+++ b/pkgs/development/python-modules/param/default.nix
@@ -2,17 +2,21 @@
 , buildPythonPackage
 , fetchFromGitHub
 , pytestCheckHook
+, pythonOlder
 }:
 
 buildPythonPackage rec {
   pname = "param";
-  version = "1.12.2";
+  version = "1.12.3";
+  format = "setuptools";
+
+  disabled = pythonOlder "3.7";
 
   src = fetchFromGitHub {
     owner = "holoviz";
     repo = pname;
     rev = "refs/tags/v${version}";
-    sha256 = "sha256-NrMsIDcpZc/R2j8VuXitbnIlhP3NtLxU/OkygXqYok8=";
+    hash = "sha256-XVHYx0M/BLjNNneObxygPHtid65ti7nctKsUMF21fmw=";
   };
 
   checkInputs = [
@@ -32,6 +36,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Declarative Python programming using Parameters";
     homepage = "https://github.com/pyviz/param";
+    changelog = "https://github.com/holoviz/param/releases/tag/v${version}";
     license = licenses.bsd3;
     maintainers = with maintainers; [ costrouc ];
   };