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
35
pkgs/development/python-modules/web/default.nix
Normal file
35
pkgs/development/python-modules/web/default.nix
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook
|
||||
, cheroot
|
||||
, dbutils, mysqlclient, pymysql, mysql-connector, psycopg2
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.62";
|
||||
pname = "web.py";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "5ce684caa240654cae5950da8b4b7bc178812031e08f990518d072bd44ab525e";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ cheroot ];
|
||||
|
||||
# requires multiple running databases
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "web" ];
|
||||
|
||||
checkInputs = [ pytestCheckHook dbutils mysqlclient pymysql mysql-connector psycopg2 ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Makes web apps";
|
||||
longDescription = ''
|
||||
Think about the ideal way to write a web app.
|
||||
Write the code to make it happen.
|
||||
'';
|
||||
homepage = "https://webpy.org/";
|
||||
license = licenses.publicDomain;
|
||||
maintainers = with maintainers; [ layus SuperSandro2000 ];
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue