1{ buildPythonPackage
2, lib
3, fetchPypi
4, pytest
5, u-msgpack-python
6, six
7}:
8
9buildPythonPackage rec {
10 pname = "pytest-expect";
11 version = "1.1.0";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "36b4462704450798197d090809a05f4e13649d9cba9acdc557ce9517da1fd847";
16 };
17
18 buildInputs = [ pytest ];
19 propagatedBuildInputs = [ u-msgpack-python six ];
20
21 # Tests in neither the archive nor the repo
22 doCheck = false;
23
24 meta = {
25 description = "py.test plugin to store test expectations and mark tests based on them";
26 homepage = "https://github.com/gsnedders/pytest-expect";
27 license = lib.licenses.mit;
28 };
29}