Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pysmi / default.nix
blob3e32fd5bd43171a88084271ce8cb8c2eca870245
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , ply
5 }:
7 buildPythonPackage rec {
8   version = "0.3.4";
9   format = "setuptools";
10   pname = "pysmi";
12  src = fetchPypi {
13     inherit pname version;
14     sha256 = "bd15a15020aee8376cab5be264c26330824a8b8164ed0195bd402dd59e4e8f7c";
15   };
17   propagatedBuildInputs = [ ply ];
19   # Tests require pysnmp, which in turn requires pysmi => infinite recursion
20   doCheck = false;
22   meta = with lib; {
23     homepage = "http://pysmi.sf.net";
24     description = "SNMP SMI/MIB Parser";
25     license = licenses.bsd2;
26     maintainers = with maintainers; [ koral ];
27   };