about summary refs log tree commit diff
path: root/pkgs/development/python-modules/poyo/default.nix
blob: 26dcd244c510aeea8a13fbba6f03d9549cfaf2e6 (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.4.2";
  pname = "poyo";

  src = fetchPypi {
    inherit pname version;
    sha256 = "07fdxlqgnnzb8r6lasvdfjcbd8sb9af0wla08rbfs40j349m8jn3";
  };

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

}