1{ stdenv, buildPythonPackage, fetchPypi
2, pytest, cmdline, pytestcov, coverage, setuptools-git, mock, pathpy, execnet
3, contextlib2, termcolor }:
4
5buildPythonPackage rec {
6 pname = "pytest-shutil";
7 version = "1.3.0";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "2cfe4d3f5f25ad2b19e64847d62563f5494b2e0450ca1cfc5940974029b2cbd1";
12 };
13
14 buildInputs = [ cmdline pytest ];
15 propagatedBuildInputs = [ pytestcov coverage setuptools-git mock pathpy execnet contextlib2 termcolor ];
16
17 checkPhase = ''
18 py.test
19 '';
20
21 meta = with stdenv.lib; {
22 description = "A goodie-bag of unix shell and environment tools for py.test";
23 homepage = https://github.com/manahl/pytest-plugins;
24 maintainers = with maintainers; [ ryansydnor ];
25 license = licenses.mit;
26 };
27}