2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-16 15:40:22 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-08-05 19:51:37 +01:00
|
|
|
version = "0.5.0";
|
2018-10-16 15:40:22 +01:00
|
|
|
pname = "poyo";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-08-05 19:51:37 +01:00
|
|
|
sha256 = "1pflivs6j22frz0v3dqxnvc8yb8fb52g11lqr88z0i8cg2m5csg2";
|
2018-10-16 15:40:22 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/hackebrot/poyo";
|
2018-10-16 15:40:22 +01:00
|
|
|
description = "A lightweight YAML Parser for Python";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|