Unverified Commit 74346f4a authored by Connor Baker's avatar Connor Baker Committed by GitHub
Browse files

python3Packages.varlink: init at 32.1.0 (#502712)

parents 7df2f567 4cce35e2
Loading
Loading
Loading
Loading
+35 −0
Original line number Diff line number Diff line
{
  buildPythonPackage,
  fetchFromGitHub,
  gitUpdater,
  lib,
  setuptools,
  setuptools-scm,
}:

buildPythonPackage (finalAttrs: {
  pname = "varlink";
  version = "32.1.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "varlink";
    repo = "python";
    tag = finalAttrs.version;
    hash = "sha256-cdTQ5OIhyPts3wuiyWZjEv9ItbHRlKbHd0nW0eAnj6s=";
  };

  build-system = [
    setuptools
    setuptools-scm
  ];

  passthru.updateScript = gitUpdater { };

  meta = {
    description = "Python implementation of the Varlink protocol";
    homepage = "https://varlink.org/python";
    license = lib.licenses.asl20;
    maintainers = [ lib.maintainers.jmbaur ];
  };
})
+2 −0
Original line number Diff line number Diff line
@@ -20635,6 +20635,8 @@ self: super: with self; {
  varint = callPackage ../development/python-modules/varint { };
  varlink = callPackage ../development/python-modules/varlink { };
  vat-moss = callPackage ../development/python-modules/vat-moss { };
  vbuild = callPackage ../development/python-modules/vbuild { };