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

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

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

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

}