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