2016-12-25 13:12:19 +03:00
|
|
|
{ buildPythonPackage
|
|
|
|
, lib
|
2018-06-23 16:27:58 +03:00
|
|
|
, fetchPypi
|
2016-12-25 13:12:19 +03:00
|
|
|
, pytest
|
|
|
|
, u-msgpack-python
|
|
|
|
, six
|
|
|
|
}:
|
|
|
|
|
2017-11-09 14:26:09 +03:00
|
|
|
buildPythonPackage rec {
|
2016-12-25 13:12:19 +03:00
|
|
|
pname = "pytest-expect";
|
|
|
|
version = "1.1.0";
|
|
|
|
|
2018-06-23 16:27:58 +03:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2016-12-25 13:12:19 +03:00
|
|
|
sha256 = "36b4462704450798197d090809a05f4e13649d9cba9acdc557ce9517da1fd847";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pytest ];
|
|
|
|
propagatedBuildInputs = [ u-msgpack-python six ];
|
|
|
|
|
|
|
|
# Tests in neither the archive nor the repo
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "py.test plugin to store test expectations and mark tests based on them";
|
|
|
|
homepage = https://github.com/gsnedders/pytest-expect;
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
};
|
2017-11-09 14:26:09 +03:00
|
|
|
}
|