summary refs log tree commit diff
path: root/pkgs/development/python-modules/poyo/default.nix
blob: b7963258f338143c340080cc06b2c37c564f5007 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  version = "0.5.0";
  pname = "poyo";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1pflivs6j22frz0v3dqxnvc8yb8fb52g11lqr88z0i8cg2m5csg2";
  };

  meta = with lib; {
    homepage = "https://github.com/hackebrot/poyo";
    description = "A lightweight YAML Parser for Python";
    license = licenses.mit;
  };

}