nixpkgs/pkgs/development/python-modules/pysmi/default.nix
R. RyanTM 303490dec5 python37Packages.pysmi: 0.3.2 -> 0.3.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-pysmi/versions
2019-01-13 20:07:52 +01:00

29 lines
561 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, ply
}:
buildPythonPackage rec {
version = "0.3.3";
pname = "pysmi";
src = fetchPypi {
inherit pname version;
sha256 = "0bzhmi4691rf306n4y82js52532h3fp1sy6phvh6hnms6nww4daf";
};
propagatedBuildInputs = [ ply ];
# Tests require pysnmp, which in turn requires pysmi => infinite recursion
doCheck = false;
meta = with stdenv.lib; {
homepage = http://pysmi.sf.net;
description = "SNMP SMI/MIB Parser";
license = licenses.bsd2;
maintainers = with maintainers; [ koral ];
};
}