From edfb23dd6bd661e5bef1c57cc0d0c6461dcf5619 Mon Sep 17 00:00:00 2001 From: figsoda Date: Fri, 8 Sep 2023 18:38:55 -0400 Subject: [PATCH] zxpy: init at 1.6.3 https://github.com/tusharsadhwani/zxpy --- pkgs/by-name/zx/zxpy/package.nix | 53 ++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 pkgs/by-name/zx/zxpy/package.nix diff --git a/pkgs/by-name/zx/zxpy/package.nix b/pkgs/by-name/zx/zxpy/package.nix new file mode 100644 index 000000000000..1735a6523b0b --- /dev/null +++ b/pkgs/by-name/zx/zxpy/package.nix @@ -0,0 +1,53 @@ +{ lib +, python3 +, fetchFromGitHub +, fetchpatch +, deterministic-uname +}: + +python3.pkgs.buildPythonApplication rec { + pname = "zxpy"; + version = "1.6.3"; + format = "pyproject"; + + src = fetchFromGitHub { + owner = "tusharsadhwani"; + repo = "zxpy"; + rev = version; + hash = "sha256-/sOLSIqaAUkaAghPqe0Zoq7C8CSKAd61o8ivtjJFcJY="; + }; + + patches = [ + # fix test caused by `uname -p` printing unknown + # https://github.com/tusharsadhwani/zxpy/pull/53 + (fetchpatch { + name = "allow-unknown-processor-in-injection-test.patch"; + url = "https://github.com/tusharsadhwani/zxpy/commit/95ad80caddbab82346f60ad80a601258fd1238c9.patch"; + hash = "sha256-iXasOKjWuxNjjTpb0umNMNhbFgBjsu5LsOpTaXllATM="; + }) + ]; + + nativeBuildInputs = [ + python3.pkgs.setuptools + python3.pkgs.wheel + ]; + + nativeCheckInputs = [ + deterministic-uname + python3.pkgs.pytestCheckHook + ]; + + preCheck = '' + export PATH=$out/bin:$PATH + ''; + + pythonImportsCheck = [ "zx" ]; + + meta = with lib; { + description = "Shell scripts made simple"; + homepage = "https://github.com/tusharsadhwani/zxpy"; + license = licenses.mit; + maintainers = with maintainers; [ figsoda ]; + mainProgram = "zxpy"; + }; +}