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