Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / sure / default.nix
blob9d16cd48af4caabf0d098ae38819da73b235ecce
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , nose
5 , mock
6 , six
7 , isPyPy
8 , pythonOlder
9 }:
11 buildPythonPackage rec {
12   pname = "sure";
13   version = "2.0.1";
14   format = "setuptools";
16   disabled = isPyPy;
18   src = fetchPypi {
19     inherit pname version;
20     sha256 = "sha256-yPxvq8Dn9phO6ruUJUDkVkblvvC7mf5Z4C2mNOTUuco=";
21   };
23   postPatch = ''
24     substituteInPlace setup.cfg \
25       --replace "rednose = 1" ""
26   '';
28   propagatedBuildInputs = [
29     mock
30     six
31   ];
33   doCheck = pythonOlder "3.12"; # nose requires imp module
35   nativeCheckInputs = [
36     nose
37   ];
39   pythonImportsCheck = [
40     "sure"
41   ];
43   meta = with lib; {
44     description = "Utility belt for automated testing";
45     mainProgram = "sure";
46     homepage = "https://sure.readthedocs.io/";
47     changelog = "https://github.com/gabrielfalcao/sure/blob/v${version}/CHANGELOG.md";
48     license = licenses.gpl3Plus;
49     maintainers = with maintainers; [ ];
50   };