depot/third_party/nixpkgs/pkgs/development/python-modules/iocapture/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

36 lines
602 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
flexmock,
pytest,
pytest-cov,
six,
}:
buildPythonPackage rec {
pname = "iocapture";
version = "0.1.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "86670e1808bcdcd4f70112f43da72ae766f04cd8311d1071ce6e0e0a72e37ee8";
};
nativeCheckInputs = [
flexmock
pytest
pytest-cov
six
];
# No tests in archive
doCheck = false;
meta = with lib; {
description = "Capture stdout, stderr easily";
homepage = "https://github.com/oinume/iocapture";
license = licenses.mit;
};
}