summary refs log tree commit diff
path: root/pkgs/development/python-modules/sure/default.nix
blob: efff79f679f4068e0432f92884711bc883ff9836 (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
{ lib, 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 lib; {
    description = "Utility belt for automated testing";
    homepage = "https://sure.readthedocs.io/en/latest/";
    license = licenses.gpl3Plus;
  };

}