From 932751fa9fb1282e9a0186f30b44b0038ce049b0 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Sun, 5 Nov 2023 18:15:26 +0100 Subject: [PATCH] asciinema-automation: init at 0.2.0 --- .../as/asciinema-automation/package.nix | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 pkgs/by-name/as/asciinema-automation/package.nix diff --git a/pkgs/by-name/as/asciinema-automation/package.nix b/pkgs/by-name/as/asciinema-automation/package.nix new file mode 100644 index 000000000000..339ec370a96f --- /dev/null +++ b/pkgs/by-name/as/asciinema-automation/package.nix @@ -0,0 +1,48 @@ +{ lib +, python3 +, fetchFromGitHub +, asciinema +}: + +python3.pkgs.buildPythonApplication rec { + pname = "asciinema-automation"; + version = "0.2.0"; + pyproject = true; + + src = fetchFromGitHub { + owner = "PierreMarchand20"; + repo = "asciinema_automation"; + rev = "v${version}"; + hash = "sha256-SjUsPrhoNz2NTPAkmUH0Csv6hbDc6nyKdckGqV5S3GY="; + }; + + nativeBuildInputs = [ + python3.pkgs.setuptools + python3.pkgs.wheel + ]; + + propagatedBuildInputs = with python3.pkgs; [ + asciinema + pexpect + ]; + + passthru.optional-dependencies = with python3.pkgs; { + dev = [ + mypy + pytest + ruff + types-pexpect + ]; + }; + + pythonImportsCheck = [ "asciinema_automation" ]; + + meta = { + changelog = "https://github.com/PierreMarchand20/asciinema_automation/blob/${src.rev}/CHANGELOG.md"; + description = "CLI utility to automate asciinema recordings"; + homepage = "https://github.com/PierreMarchand20/asciinema_automation"; + license = lib.licenses.mit; + mainProgram = "asciinema-automation"; + maintainers = with lib.maintainers; [ drupol ]; + }; +}