nixpkgs/pkgs/development/python-modules/iocapture/default.nix

35 lines
563 B
Nix
Raw Normal View History

2018-11-24 13:32:54 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, flexmock
, pytest
, pytest-cov
2018-11-24 13:32:54 +00:00
, six
}:
buildPythonPackage rec {
pname = "iocapture";
version = "0.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "86670e1808bcdcd4f70112f43da72ae766f04cd8311d1071ce6e0e0a72e37ee8";
};
checkInputs = [
flexmock
pytest
pytest-cov
2018-11-24 13:32:54 +00:00
six
];
2018-11-24 13:35:58 +00:00
# No tests in archive
doCheck = false;
2018-11-24 13:32:54 +00:00
meta = with lib; {
description = "Capture stdout, stderr easily.";
homepage = "https://github.com/oinume/iocapture";
license = licenses.mit;
2018-11-24 13:32:54 +00:00
};
}