python3Packages.typepy: init at 1.3.0
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user