summary refs log blame commit diff
path: root/pkgs/development/python-modules/pyzmq/default.nix
blob: 5d02c33fa9096a207bec2922232331e2c1e816fc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                    


           
        





                        
                     


                          
                                                                    


                                    
                           

                                 

                                      
                 





                                                                  

     
{ buildPythonPackage
, fetchPypi
, pytest
, tornado
, zeromq
, py
, python
}:

buildPythonPackage rec {
  pname = "pyzmq";
  version = "18.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0k3y6k3l9dmih3qmc4vrw26dpjggdk5c6r6806qhgjgpyq2rhccb";
  };

  checkInputs = [  pytest tornado ];
  buildInputs = [ zeromq ];
  propagatedBuildInputs = [ py ];

  # test_socket.py seems to be hanging
  # others fail
  checkPhase = ''
    py.test $out/${python.sitePackages}/zmq/ -k "not test_socket \
      and not test_current \
      and not test_instance \
      and not test_callable_check \
      and not test_on_recv_basic \
      and not test_on_recv_wake"
  '';
}