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

33 lines
581 B
Nix
Raw Normal View History

2019-02-15 11:44:44 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
2019-02-15 11:44:44 +00:00
, mock
, pytest
, selectors2
2019-02-15 11:44:44 +00:00
}:
buildPythonPackage rec {
pname = "wurlitzer";
version = "2.0.0";
2019-02-15 11:44:44 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0xndv47iwc9k8cp5r9r1z3r0xww0r5x5b7qsmn39gk2gsg0119c6";
2019-02-15 11:44:44 +00:00
};
propagatedBuildInputs = lib.optionals isPy27 [ selectors2 ];
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;
};
}