1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pyparsing, 6}: 7buildPythonPackage rec { 8 pname = "pylibconfig2"; 9 version = "0.2.5"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "1iwm11v0ghv2pq2cyvly7gdwrhxsx6iwi581fz46l0snhgcd4sqq"; 15 }; 16 17 # tests not included in the distribution 18 doCheck = false; 19 20 propagatedBuildInputs = [ pyparsing ]; 21 22 meta = with lib; { 23 homepage = "https://github.com/heinzK1X/pylibconfig2"; 24 description = "Pure python library for libconfig syntax"; 25 license = licenses.gpl3; 26 }; 27}