mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
python312Packages.reflex-hosting-cli: init at 0.1.13
This commit is contained in:
parent
23c20c44cf
commit
71f977f8a7
@ -0,0 +1,62 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
poetry-core,
|
||||
charset-normalizer,
|
||||
httpx,
|
||||
pipdeptree,
|
||||
platformdirs,
|
||||
pydantic,
|
||||
python-dateutil,
|
||||
rich,
|
||||
tabulate,
|
||||
typer,
|
||||
websockets,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "reflex-hosting-cli";
|
||||
version = "0.1.13";
|
||||
pyproject = true;
|
||||
|
||||
# source is not published https://github.com/reflex-dev/reflex/issues/3762
|
||||
src = fetchPypi {
|
||||
pname = "reflex_hosting_cli";
|
||||
inherit version;
|
||||
hash = "sha256-xdav3P63TO4EajdN29WRFquO15fa5oj8x0TauuJNxXE=";
|
||||
};
|
||||
|
||||
pythonRelaxDeps = [ "pipdeptree" ];
|
||||
|
||||
build-system = [ poetry-core ];
|
||||
|
||||
dependencies = [
|
||||
charset-normalizer
|
||||
httpx
|
||||
pipdeptree
|
||||
platformdirs
|
||||
pydantic
|
||||
python-dateutil
|
||||
rich
|
||||
tabulate
|
||||
typer
|
||||
websockets
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"reflex_cli"
|
||||
"reflex_cli.cli"
|
||||
"reflex_cli.deployments"
|
||||
];
|
||||
|
||||
# no tests on pypi
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Reflex Hosting CLI";
|
||||
homepage = "https://pypi.org/project/reflex-hosting-cli/";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ pbsds ];
|
||||
};
|
||||
}
|
@ -13508,6 +13508,8 @@ self: super: with self; {
|
||||
|
||||
refery = callPackage ../development/python-modules/refery { };
|
||||
|
||||
reflex-hosting-cli = callPackage ../development/python-modules/reflex-hosting-cli { };
|
||||
|
||||
reflink = callPackage ../development/python-modules/reflink { };
|
||||
|
||||
refoss-ha = callPackage ../development/python-modules/refoss-ha { };
|
||||
|
Loading…
Reference in New Issue
Block a user