Unverified Commit 2ec012dd authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #217595 from fabaff/pysnmp-pyasn1-bump

python310Packages.pysnmp-pyasn1: 1.1.2 -> 1.1.3
parents daa13e44 6581ed57
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@

buildPythonPackage rec {
  pname = "pysnmp-pyasn1";
  version = "1.1.2";
  version = "1.1.3";
  format = "pyproject";

  disabled = pythonOlder "3.7";
@@ -16,8 +16,8 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "pysnmp";
    repo = "pyasn1";
    rev = "v${version}";
    hash = "sha256-R4reMwVcJBTfTEHUk6sSUugsEPuKIziH1WbjMakP/dA=";
    rev = "refs/tags/v${version}";
    hash = "sha256-W74aWMqGlat+aZfhbP1cTKRz7SomHdGwfK5yJwxgyqI=";
  };

  nativeBuildInputs = [
@@ -35,6 +35,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python ASN.1 encoder and decoder";
    homepage = "https://github.com/pysnmp/pyasn1";
    changelog = "https://github.com/pysnmp/pyasn1/releases/tag/v${version}";
    license = licenses.bsd2;
    maintainers = with maintainers; [ fab ];
  };