Unverified Commit 85b0331e authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.pysmi: 1.6.2 -> 1.6.3 (#483972)

parents 4c2f0790 5cd03fab
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -11,16 +11,16 @@
  requests,
}:

buildPythonPackage rec {
  version = "1.6.2";
buildPythonPackage (finalAttrs: {
  pname = "pysmi";
  version = "1.6.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "lextudio";
    repo = "pysmi";
    tag = "v${version}";
    hash = "sha256-GyG3J6qntEIszXrm1t623+x1cYbhJLbTEQl6N2h2LA0=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-TpDrsBGym07JPIcnytyWI7Ebx9RR+7Ia36zOzWMWqPM=";
  };

  build-system = [ flit-core ];
@@ -46,8 +46,8 @@ buildPythonPackage rec {
  meta = {
    description = "SNMP MIB parser";
    homepage = "https://github.com/lextudio/pysmi";
    changelog = "https://github.com/lextudio/pysmi/blob/v${version}/CHANGES.rst";
    changelog = "https://github.com/lextudio/pysmi/blob/${finalAttrs.src.tag}/CHANGES.rst";
    license = lib.licenses.bsd2;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})