mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
7819cc0cb9
- checkInputs rather than buildInputs - it was complaining that py.test was not a valid command
25 lines
569 B
Nix
25 lines
569 B
Nix
{ stdenv, 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 stdenv.lib; {
|
|
maintainers = with maintainers; [ domenkozar ];
|
|
};
|
|
}
|