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

                        









                                                                    
                                                           

     
                           


                                             
                    


                                                   
{ lib, buildPythonPackage, fetchPypi, pytest, beaker, pyramid }:

buildPythonPackage rec {
  pname = "pyramid_beaker";
  version = "0.8";

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

  checkPhase = ''
    # https://github.com/Pylons/pyramid_beaker/issues/29
    py.test -k 'not test_includeme' pyramid_beaker/tests.py
  '';

  checkInputs = [ pytest ];

  propagatedBuildInputs = [ beaker pyramid ];

  meta = with lib; {
    maintainers = with maintainers; [ domenkozar ];
  };
}