python3Packages.typepy: init at 1.3.0

This commit is contained in:
GenericNerdyUsername
2023-02-07 18:18:40 +00:00
parent cce639c6de
commit 6d3840a67f
2 changed files with 36 additions and 0 deletions
@@ -0,0 +1,34 @@
{ buildPythonPackage
, fetchFromGitHub
, lib
, mbstrdecoder
, python-dateutil
, pytz
, packaging
, pytestCheckHook
, tcolorpy
}:
buildPythonPackage rec {
pname = "typepy";
version = "1.3.0";
src = fetchFromGitHub {
owner = "thombashi";
repo = pname;
rev = "v${version}";
hash = "sha256-J6SgVd2m0wOVr2ZV/pryRcJrn+BYTGstAUQO349c2lE=";
};
propagatedBuildInputs = [ mbstrdecoder python-dateutil pytz packaging ];
nativeCheckInputs = [ pytestCheckHook ];
checkInputs = [ tcolorpy ];
meta = with lib; {
homepage = "https://github.com/thombashi/typepy";
description = "A library for variable type checker/validator/converter at a run time";
maintainers = with maintainers; [ genericnerdyusername ];
license = licenses.mit;
};
}
+2
View File
@@ -11764,6 +11764,8 @@ self: super: with self; {
typeguard = callPackage ../development/python-modules/typeguard { };
typepy = callPackage ../development/python-modules/typepy { };
typer = callPackage ../development/python-modules/typer { };
types-colorama = callPackage ../development/python-modules/types-colorama { };