Commit b470814a authored by Gaetan Lepage's avatar Gaetan Lepage Committed by Gaétan Lepage
Browse files

python312Packages.zpp, zpp: init at 1.1.0

parent 7c8fc691
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
{ python3Packages }:

python3Packages.toPythonApplication python3Packages.zpp
+35 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  testers,
  zpp,
}:
buildPythonPackage rec {
  pname = "zpp";
  version = "1.1.0";

  pyproject = true;

  src = fetchFromGitHub {
    owner = "jbigot";
    repo = "zpp";
    rev = "refs/tags/${version}";
    hash = "sha256-Jvh80TfOonZ57lb+4PulVOUKi9Y74nplIcrPzlUPw3M=";
  };

  build-system = [ setuptools ];

  passthru = {
    tests.version = testers.testVersion { package = zpp; };
  };

  meta = {
    description = "The 'Z' pre-processor, the last preprocessor you'll ever need";
    homepage = "https://github.com/jbigot/zpp";
    license = lib.licenses.mit;
    mainProgram = "zpp";
    maintainers = with lib.maintainers; [ GaetanLepage ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -17922,6 +17922,8 @@ self: super: with self; {
    inherit (pkgs) zopfli;
  };
  zpp = callPackage ../development/python-modules/zpp { };
  zstandard = callPackage ../development/python-modules/zstandard { };
  zstd = callPackage ../development/python-modules/zstd {