summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-01-14 17:50:30 +0100
committerGitHub <noreply@github.com>2023-01-14 17:50:30 +0100
commit2c96f3e891a2ac55c96855c8649cf3bff95860c4 (patch)
tree65019d7917e696bf3fceced6e74e87f236444c12
parent7219d14357d9397c15cfd437a0524f548cefca1e (diff)
parenta3a05e0532821dcf4a5eb0d4b04c972b9e894394 (diff)
Merge pull request #210525 from r-ryantm/auto-update/python310Packages.traitsui
python310Packages.traitsui: 7.4.2 -> 7.4.3
-rw-r--r--pkgs/development/python-modules/traitsui/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/traitsui/default.nix b/pkgs/development/python-modules/traitsui/default.nix
index 58808d81ce9a..de0928508844 100644
--- a/pkgs/development/python-modules/traitsui/default.nix
+++ b/pkgs/development/python-modules/traitsui/default.nix
@@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "traitsui";
- version = "7.4.2";
+ version = "7.4.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- hash = "sha256-IEcb8znD7ed/BrL6l76Qrj0Wbr78zBZ7y9oifHWxZj8=";
+ hash = "sha256-2zJRfpYioFgMIyCeE/gDLOoA5hxndJNnCf9F52M11bk=";
};
propagatedBuildInputs = [
@@ -33,6 +33,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Traits-capable windowing framework";
homepage = "https://github.com/enthought/traitsui";
+ changelog = "https://github.com/enthought/traitsui/releases/tag/${version}";
license = licenses.bsdOriginal;
maintainers = with maintainers; [ knedlsepp ];
};