python.pkgs.iocapture: init at 0.1.2

This commit is contained in:
Frederik Rietdijk 2018-11-24 14:32:54 +01:00
parent 8864410439
commit 3d0f73ca12
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, flexmock
, pytest
, pytest-cov
, six
}:
buildPythonPackage rec {
pname = "iocapture";
version = "0.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "86670e1808bcdcd4f70112f43da72ae766f04cd8311d1071ce6e0e0a72e37ee8";
};
checkInputs = [
flexmock
pytest
pytest-cov
six
];
meta = with lib; {
description = "Capture stdout, stderr easily.";
homepage = https://github.com/oinume/iocapture;
license = licenses.MIT;
# maintainers = [ maintainers. ];
};
}

View File

@ -2664,6 +2664,8 @@ in {
interruptingcow = callPackage ../development/python-modules/interruptingcow {};
iocapture = callPackage ../development/python-modules/iocapture { };
iptools = callPackage ../development/python-modules/iptools { };
ipy = callPackage ../development/python-modules/IPy { };