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
112
pkgs/development/python-modules/datasette/default.nix
Normal file
112
pkgs/development/python-modules/datasette/default.nix
Normal file
|
|
@ -0,0 +1,112 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, aiofiles
|
||||
, asgi-csrf
|
||||
, click
|
||||
, click-default-group
|
||||
, itsdangerous
|
||||
, janus
|
||||
, jinja2
|
||||
, hupper
|
||||
, mergedeep
|
||||
, pint
|
||||
, pluggy
|
||||
, python-baseconv
|
||||
, pyyaml
|
||||
, uvicorn
|
||||
, httpx
|
||||
# Check Inputs
|
||||
, pytestCheckHook
|
||||
, pytest-asyncio
|
||||
, pytest-timeout
|
||||
, aiohttp
|
||||
, beautifulsoup4
|
||||
, asgiref
|
||||
, setuptools
|
||||
, trustme
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "datasette";
|
||||
version = "0.61.1";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "simonw";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-HVzMyF4ujYK12UQ25il/XROPo+iBldsMxOTx+duoc5o=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py \
|
||||
--replace '"pytest-runner"' "" \
|
||||
--replace "click>=7.1.1,<8.1.0" "click>=7.1.1,<8.2.0" \
|
||||
--replace "click-default-group~=1.2.2" "click-default-group" \
|
||||
--replace "hupper~=1.9" "hupper" \
|
||||
--replace "Jinja2>=2.10.3,<3.1.0" "Jinja2" \
|
||||
--replace "pint~=0.9" "pint" \
|
||||
--replace "uvicorn~=0.11" "uvicorn"
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiofiles
|
||||
asgi-csrf
|
||||
asgiref
|
||||
click
|
||||
click-default-group
|
||||
httpx
|
||||
hupper
|
||||
itsdangerous
|
||||
janus
|
||||
jinja2
|
||||
mergedeep
|
||||
pint
|
||||
pluggy
|
||||
python-baseconv
|
||||
pyyaml
|
||||
setuptools
|
||||
uvicorn
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
aiohttp
|
||||
beautifulsoup4
|
||||
pytest-asyncio
|
||||
pytest-timeout
|
||||
pytestCheckHook
|
||||
trustme
|
||||
];
|
||||
|
||||
# takes 30-180 mins to run entire test suite, not worth the CPU resources, slows down reviews
|
||||
# with pytest-xdist, it still takes around 10 mins with 32 cores
|
||||
# just run the csv tests, as this should give some indictation of correctness
|
||||
pytestFlagsArray = [
|
||||
"tests/test_csv.py"
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
"facet"
|
||||
"_invalid_database" # checks error message when connecting to invalid database
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"datasette"
|
||||
"datasette.cli"
|
||||
"datasette.app"
|
||||
"datasette.database"
|
||||
"datasette.renderer"
|
||||
"datasette.tracer"
|
||||
"datasette.plugins"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Multi-tool for exploring and publishing data";
|
||||
homepage = "https://datasette.io/";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ costrouc ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue