Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / nose3 / default.nix
blobdf6d75a07dc5ab929aa09c5e63833d702ffcf996
1 { lib
2 , buildPythonPackage
3 , coverage
4 , fetchPypi
5 , isPyPy
6 , isPy311
7 , python
8 , pythonAtLeast
9 , stdenv
12 buildPythonPackage rec {
13   pname = "nose3";
14   version = "1.3.8";
15   format = "setuptools";
17   # https://github.com/jayvdb/nose3/issues/5
18   disabled = pythonAtLeast "3.12";
20   src = fetchPypi {
21     inherit pname version;
22     hash = "sha256-diquIsrbiYsAudT0u7n46H+ODd5sSaiM0MVU9OWSW3Y=";
23   };
25   propagatedBuildInputs = [ coverage ];
27   # PyPy hangs for unknwon reason
28   # Darwin and python 3.11 fail at various assertions and I didn't find an easy way to find skip those tests
29   doCheck = !isPyPy && !stdenv.isDarwin && !isPy311;
31   checkPhase = ''
32     ${python.pythonOnBuildForHost.interpreter} selftest.py
33   '';
35   meta = with lib; {
36     description = "Fork of nose v1 not using lib2to3 for compatibility with Python 3";
37     homepage = "https://github.com/jayvdb/nose3";
38     license = licenses.lgpl3;
39     maintainers = with maintainers; [ SuperSandro2000 ];
40   };