1{ lib
2, buildPythonPackage
3, fetchPypi
4, rednose
5, six
6, mock
7, isPyPy
8}:
9
10buildPythonPackage rec {
11 pname = "sure";
12 version = "2.0.0";
13 disabled = isPyPy;
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "34ae88c846046742ef074036bf311dc90ab152b7bc09c342b281cebf676727a2";
18 };
19
20 buildInputs = [ rednose ];
21 propagatedBuildInputs = [ six mock ];
22
23 meta = with lib; {
24 description = "Utility belt for automated testing";
25 homepage = "https://sure.readthedocs.io/en/latest/";
26 license = licenses.gpl3Plus;
27 };
28
29}