python3.pkgs.typesentry: init at 0.2.7

This commit is contained in:
Nikolay Amiantov 2019-06-03 17:46:45 +03:00
parent d29a39d7d5
commit c5ed8dd610
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, colorama
, pytest
, pytestcov
}:
buildPythonPackage rec {
pname = "typesentry";
version = "0.2.7";
# Only wheel distribution is available on PyPi.
src = fetchFromGitHub {
owner = "h2oai";
repo = "typesentry";
rev = "0ca8ed0e62d15ffe430545e7648c9a9b2547b49c";
sha256 = "0z615f9dxaab3bay3v27j7q99qm6l6q8xv872yvsp87sxj7apfki";
};
propagatedBuildInputs = [ colorama ];
checkInputs = [ pytest pytestcov ];
checkPhase = ''
pytest
'';
meta = with lib; {
description = "Python 2.7 & 3.5+ runtime type-checker";
homepage = "https://github.com/h2oai/typesentry";
license = licenses.asl20;
maintainers = with maintainers; [ abbradar ];
};
}

View file

@ -4306,6 +4306,8 @@ in {
typeguard = callPackage ../development/python-modules/typeguard { };
typesentry = callPackage ../development/python-modules/typesentry { };
s3transfer = callPackage ../development/python-modules/s3transfer { };
seqdiag = callPackage ../development/python-modules/seqdiag { };