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