python.pkgs.iocapture: init at 0.1.2
This commit is contained in:
parent
8864410439
commit
3d0f73ca12
32
pkgs/development/python-modules/iocapture/default.nix
Normal file
32
pkgs/development/python-modules/iocapture/default.nix
Normal 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. ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user