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









                                  









                                                                    
                         





                                                                    
                                                                  


                               
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, nose
}:

buildPythonPackage rec {
  pname = "nose_warnings_filters";
  version = "0.1.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "17dvfqfy2fm7a5cmiffw2dc3064kpx72fn5mlw01skm2rhn5nv25";
  };

  disabled = !isPy3k;

  propagatedBuildInputs = [ nose ];

  checkInputs = [ nose ];
  checkPhase = ''
    nosetests -v
  '';

  meta = {
    description = "Allow injecting warning filters during nosetest";
    homepage = "https://github.com/Carreau/nose_warnings_filters";
    license = lib.licenses.mit;
  };
}