python3Packages.runtype: init at 0.5.3 (#513379)

This commit is contained in:
Arne Keller
2026-07-22 10:56:51 +00:00
committed by GitHub
3 changed files with 41 additions and 0 deletions
+6
View File
@@ -4186,6 +4186,12 @@
github = "brittonr";
githubId = 4730485;
};
BrockoliniMorgan = {
name = "Brock Morgan";
email = "brockjamesmorgan@gmail.com";
github = "BrockoliniMorgan";
githubId = 166275321;
};
brodes = {
email = "me@brod.es";
github = "brhoades";
@@ -0,0 +1,33 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
}:
buildPythonPackage (finalAttrs: {
name = "runtype";
version = "0.5.3";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "erezsh";
repo = "runtype";
tag = finalAttrs.version;
hash = "sha256-HGYQsunqewuxmdj9kaRZDZxUOf6hRqBySCq4bdxQ3v4=";
};
pyproject = true;
build-system = [
poetry-core
];
pythonImportsCheck = [ "runtype" ];
meta = {
description = "Utilities for run-time type validation and multiple dispatch";
homepage = "https://github.com/erezsh/runtype";
maintainers = with lib.maintainers; [ BrockoliniMorgan ];
license = lib.licenses.mit;
};
})
+2
View File
@@ -18016,6 +18016,8 @@ self: super: with self; {
runstats = callPackage ../development/python-modules/runstats { };
runtype = callPackage ../development/python-modules/runtype { };
russound = callPackage ../development/python-modules/russound { };
rustworkx = callPackage ../development/python-modules/rustworkx { };