Commit 73ff1cbe authored by Fabian Affolter's avatar Fabian Affolter
Browse files
parent 00b2dcce
Loading
Loading
Loading
Loading
+16 −13
Original line number Diff line number Diff line
{ lib, python3Packages, fetchPypi, installShellFiles }:
{
  lib,
  fetchPypi,
  installShellFiles,
  python3Packages,
}:

let
python3Packages.buildPythonApplication rec {
  pname = "tmuxp";
  version = "1.47.0";
  hash = "sha256-HYY6CEUPpZVvVK9kV4Ehw4wGk5YfIVSkZ0+qqf6Nz4c=";
in
python3Packages.buildPythonApplication {
  inherit pname version;
  version = "1.49.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version hash;
    inherit pname version;
    hash = "sha256-Fip2HnwIa03khiYlL5FkhVo84oS0OSD9f79bEFLBoNc=";
  };

  nativeBuildInputs = [
    python3Packages.poetry-core
    python3Packages.shtab
    installShellFiles
  build-system = with python3Packages; [
    hatchling
    shtab
  ];

  propagatedBuildInputs = with python3Packages; [
  nativeBuildInputs = [ installShellFiles ];

  dependencies = with python3Packages; [
    colorama
    libtmux
    pyyaml