summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2026-01-12 22:06:16 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2026-01-13 00:35:48 +0100
commit3f90ad0eef854ea336f9fdbe21dacaa9dc3908ec (patch)
tree1d8682a61699ce4ff97216aabbafef97471c2d8f /pkgs/development/python-modules
parent1dafd2a984788e963b384d813ee99f26211c1621 (diff)
python313Packages.types-awscrt: migrate to finalAttrs
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/types-awscrt/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/types-awscrt/default.nix b/pkgs/development/python-modules/types-awscrt/default.nix
index 96d9c639a335..c872d636a701 100644
--- a/pkgs/development/python-modules/types-awscrt/default.nix
+++ b/pkgs/development/python-modules/types-awscrt/default.nix
@@ -5,14 +5,14 @@
setuptools,
}:
-buildPythonPackage rec {
+buildPythonPackage (finalAttrs: {
pname = "types-awscrt";
version = "0.31.0";
pyproject = true;
src = fetchPypi {
pname = "types_awscrt";
- inherit version;
+ inherit (finalAttrs) version;
hash = "sha256-qotCFIrwhHvhTiuOo2N6NRj/qwOPjTvnCDlQ886H0/8=";
};
@@ -26,8 +26,8 @@ buildPythonPackage rec {
meta = {
description = "Type annotations and code completion for awscrt";
homepage = "https://github.com/youtype/types-awscrt";
- changelog = "https://github.com/youtype/types-awscrt/releases/tag/${version}";
+ changelog = "https://github.com/youtype/types-awscrt/releases/tag/${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
-}
+})