Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pylibconfig2 / default.nix
blob0742272543434270a898590f0dcdffd4317897b0
1 { lib, buildPythonPackage, fetchPypi, pyparsing }:
2 buildPythonPackage rec {
3   pname = "pylibconfig2";
4   version = "0.2.5";
5   format = "setuptools";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "1iwm11v0ghv2pq2cyvly7gdwrhxsx6iwi581fz46l0snhgcd4sqq";
10   };
12   # tests not included in the distribution
13   doCheck = false;
15   propagatedBuildInputs = [ pyparsing ];
17   meta = with lib; {
18     homepage = "https://github.com/heinzK1X/pylibconfig2";
19     description = "Pure python library for libconfig syntax";
20     license = licenses.gpl3;
21   };