Skip to content

Commit

Permalink
posting: init at 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
taha-yassine committed Jul 12, 2024
1 parent ac1bb3e commit 0c5893f
Show file tree
Hide file tree
Showing 3 changed files with 89 additions and 0 deletions.
49 changes: 49 additions & 0 deletions pkgs/by-name/po/posting/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{ lib
, python3
, fetchFromGitHub
}:

python3.pkgs.buildPythonApplication rec {
pname = "posting";
version = "1.1.0";
pyproject = true;

src = fetchFromGitHub {
owner = "darrenburns";
repo = "posting";
rev = version;
hash = "sha256-kvRYS1tFBWWpXm47fa/zDhE4WjJqNsaWRrGU+lcBcys=";
};

build-system = [
python3.pkgs.hatchling
];

dependencies = with python3.pkgs; [
click
click-default-group
httpx
pydantic
pydantic-settings
pyperclip
python-dotenv
pyyaml
textual
textual-autocomplete
xdg-base-dirs
]
++ httpx.optional-dependencies.brotli
++ textual.optional-dependencies.syntax;

pythonRelaxDeps = true;

pythonImportsCheck = [ "posting" ];

meta = {
description = "Modern API client that lives in your terminal";
homepage = "https://github.com/darrenburns/posting";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ taha-yassine ];
mainProgram = "posting";
};
}
38 changes: 38 additions & 0 deletions pkgs/development/python-modules/textual-autocomplete/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, textual
, typing-extensions
}:

buildPythonPackage rec {
pname = "textual-autocomplete";
version = "3.0.0a9";
pyproject = true;

src = fetchFromGitHub {
owner = "darrenburns";
repo = "textual-autocomplete";
rev = "bbacfa91bfd9ff006dab8930a8a3fe4ba46853ab";
hash = "sha256-m2ATH2BNoVCoEzKb5xxe4KPvUlfrwfE+widRIdApkL8=";
};

build-system = [
poetry-core
];

dependencies = [
textual
typing-extensions
];

pythonImportsCheck = [ "textual_autocomplete" ];

meta = {
description = "Easily add autocomplete dropdowns to your Textual apps";
homepage = "https://github.com/darrenburns/textual-autocomplete";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ taha-yassine ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15223,6 +15223,8 @@ self: super: with self; {

textual = callPackage ../development/python-modules/textual { };

textual-autocomplete = callPackage ../development/python-modules/textual-autocomplete { };

textual-dev = callPackage ../development/python-modules/textual-dev { };

textual-universal-directorytree = callPackage ../development/python-modules/textual-universal-directorytree { };
Expand Down

0 comments on commit 0c5893f

Please sign in to comment.