summary refs log tree commit diff
path: root/pkgs/development/python-modules/sure/default.nix
blob: b4c5fdf4022e2fa44e65a4c66bcceb4c7c79d43f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv
, buildPythonPackage
, fetchPypi
, rednose
, six
, mock
, isPyPy
}:

buildPythonPackage rec {
  pname = "sure";
  version = "1.4.11";
  disabled = isPyPy;

  src = fetchPypi {
    inherit pname version;
    sha256 = "3c8d5271fb18e2c69e2613af1ad400d8df090f1456081635bd3171847303cdaa";
  };

  buildInputs = [ rednose ];
  propagatedBuildInputs = [ six mock ];

  meta = with stdenv.lib; {
    description = "Utility belt for automated testing";
    homepage = https://sure.readthedocs.io/en/latest/;
    license = licenses.gpl3Plus;
  };

}