mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
python312Packages.shiny: init at 0.10.2
This commit is contained in:
parent
5f2a6de6f9
commit
52764879d1
77
pkgs/development/python-modules/shiny/default.nix
Normal file
77
pkgs/development/python-modules/shiny/default.nix
Normal file
@ -0,0 +1,77 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
|
||||
appdirs,
|
||||
asgiref,
|
||||
click,
|
||||
htmltools,
|
||||
linkify-it-py,
|
||||
markdown-it-py,
|
||||
mdit-py-plugins,
|
||||
python-multipart,
|
||||
questionary,
|
||||
starlette,
|
||||
uvicorn,
|
||||
watchfiles,
|
||||
websockets,
|
||||
|
||||
pytestCheckHook,
|
||||
pytest-asyncio,
|
||||
pytest-playwright,
|
||||
pytest-xdist,
|
||||
pytest-timeout,
|
||||
pytest-rerunfailures,
|
||||
pandas,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "shiny";
|
||||
version = "0.10.2";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "posit-dev";
|
||||
repo = "py-shiny";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-s1j9bMAapO0iRXsuNxiwlNaVv2EoWcl9U7WnHwQe9n8=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
dependencies = [
|
||||
appdirs
|
||||
asgiref
|
||||
click
|
||||
htmltools
|
||||
linkify-it-py
|
||||
markdown-it-py
|
||||
mdit-py-plugins
|
||||
python-multipart
|
||||
questionary
|
||||
starlette
|
||||
uvicorn
|
||||
watchfiles
|
||||
websockets
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "shiny" ];
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
pytest-asyncio
|
||||
pytest-playwright
|
||||
pytest-xdist
|
||||
pytest-timeout
|
||||
pytest-rerunfailures
|
||||
pandas
|
||||
];
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/posit-dev/py-shiny/blob/${src.rev}/CHANGELOG.md";
|
||||
description = "Build fast, beautiful web applications in Python";
|
||||
license = lib.licenses.mit;
|
||||
homepage = "https://shiny.posit.co/py";
|
||||
maintainers = with lib.maintainers; [ sigmanificient ];
|
||||
};
|
||||
}
|
@ -14182,6 +14182,8 @@ self: super: with self; {
|
||||
|
||||
shimmy = callPackage ../development/python-modules/shimmy { };
|
||||
|
||||
shiny = callPackage ../development/python-modules/shiny { };
|
||||
|
||||
shippai = callPackage ../development/python-modules/shippai { };
|
||||
|
||||
shiv = callPackage ../development/python-modules/shiv { };
|
||||
|
Loading…
Reference in New Issue
Block a user