3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/wurlitzer/default.nix

28 lines
494 B
Nix
Raw Normal View History

2019-02-15 11:44:44 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, mock
, pytest
}:
buildPythonPackage rec {
pname = "wurlitzer";
version = "1.0.3";
2019-02-15 11:44:44 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0nab45pfgqdxhhyshf717xfzniss2h3bx19zdaq9gqr6v8lw6wpr";
2019-02-15 11:44:44 +00:00
};
checkInputs = [ mock pytest ];
checkPhase = ''
py.test test.py
'';
meta = {
description = "Capture C-level output in context managers";
homepage = https://github.com/minrk/wurlitzer;
license = lib.licenses.mit;
};
}