python310Packages.typepy: combine inputs
This commit is contained in:
parent
20efb1b604
commit
9af11af665
1 changed files with 10 additions and 3 deletions
|
@ -24,10 +24,17 @@ buildPythonPackage rec {
|
||||||
hash = "sha256-cgy1+6RZ1DUyH45bAKpGPOOZCwhCUghummw2fnfJGww=";
|
hash = "sha256-cgy1+6RZ1DUyH45bAKpGPOOZCwhCUghummw2fnfJGww=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ mbstrdecoder python-dateutil pytz packaging ];
|
propagatedBuildInputs = [
|
||||||
|
mbstrdecoder
|
||||||
|
python-dateutil
|
||||||
|
pytz
|
||||||
|
packaging
|
||||||
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [ pytestCheckHook ];
|
nativeCheckInputs = [
|
||||||
checkInputs = [ tcolorpy ];
|
pytestCheckHook
|
||||||
|
tcolorpy
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Library for variable type checker/validator/converter at a run time";
|
description = "Library for variable type checker/validator/converter at a run time";
|
||||||
|
|
Loading…
Reference in a new issue