Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 561 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, ply 5}: 6 7buildPythonPackage rec { 8 version = "0.3.3"; 9 pname = "pysmi"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "0bzhmi4691rf306n4y82js52532h3fp1sy6phvh6hnms6nww4daf"; 14 }; 15 16 propagatedBuildInputs = [ ply ]; 17 18 # Tests require pysnmp, which in turn requires pysmi => infinite recursion 19 doCheck = false; 20 21 meta = with stdenv.lib; { 22 homepage = http://pysmi.sf.net; 23 description = "SNMP SMI/MIB Parser"; 24 license = licenses.bsd2; 25 maintainers = with maintainers; [ koral ]; 26 }; 27 28}