2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pyparsing }:
|
2018-05-23 16:25:44 +01:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pylibconfig2";
|
|
|
|
version = "0.2.5";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "1iwm11v0ghv2pq2cyvly7gdwrhxsx6iwi581fz46l0snhgcd4sqq";
|
|
|
|
};
|
|
|
|
|
|
|
|
# tests not included in the distribution
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ pyparsing ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/heinzK1X/pylibconfig2";
|
2018-05-23 16:25:44 +01:00
|
|
|
description = "Pure python library for libconfig syntax";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
}
|