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

python310Packages.pysnmp-pyasn1: 1.1.2 -> 1.1.3
This commit is contained in:
Nick Cao
2023-02-24 10:13:05 +08:00
committed by GitHub
@@ -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 ];
};