uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
28
pkgs/development/python-modules/pyramid_beaker/default.nix
Normal file
28
pkgs/development/python-modules/pyramid_beaker/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{ 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; {
|
||||
description = "Beaker session factory backend for Pyramid";
|
||||
homepage = "https://docs.pylonsproject.org/projects/pyramid_beaker/en/latest/";
|
||||
# idk, see https://github.com/Pylons/pyramid_beaker/blob/master/LICENSE.txt
|
||||
# license = licenses.mpl20;
|
||||
maintainers = with maintainers; [ domenkozar ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue