summary refs log blame commit diff
path: root/pkgs/development/python-modules/pytest-mpl/default.nix
blob: 30a2757ecf323776321f6fbc01244b239e44ea0e (plain) (tree)
1
2
3
4
5
6
7
8
     




                    
        
                 



                        
                   


                          
                                                                                

    


                 
 


                           
          


                 
                   

    






                                                         


                                                              
                                                    

     
                    
                                                                                      
                                                          



                                           
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, matplotlib
, nose
, pillow
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "pytest-mpl";
  version = "0.12";

  src = fetchPypi {
    inherit pname version;
    sha256 = "4a223909e5148c99bd18891848c7871457729322c752c9c470bd8dd6bdf9f940";
  };

  buildInputs = [
    pytest
  ];

  propagatedBuildInputs = [
    matplotlib
    nose
    pillow
  ];

  checkInputs = [
    pytestCheckHook
  ];

  # Broken since b6e98f18950c2b5dbdc725c1181df2ad1be19fee
  disabledTests = [
    "test_hash_fails"
    "test_hash_missing"
  ];

  preCheck = ''
    export HOME=$(mktemp -d)
    mkdir -p $HOME/.config/matplotlib
    echo "backend: ps" > $HOME/.config/matplotlib/matplotlibrc
    ln -s $HOME/.config/matplotlib $HOME/.matplotlib
  '';

  meta = with lib; {
    description = "Pytest plugin to help with testing figures output from Matplotlib";
    homepage = "https://github.com/matplotlib/pytest-mpl";
    license = licenses.bsd3;
    maintainers = [ maintainers.costrouc ];
  };
}