Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / poyo / default.nix
blobb7963258f338143c340080cc06b2c37c564f5007
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   version = "0.5.0";
8   pname = "poyo";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "1pflivs6j22frz0v3dqxnvc8yb8fb52g11lqr88z0i8cg2m5csg2";
13   };
15   meta = with lib; {
16     homepage = "https://github.com/hackebrot/poyo";
17     description = "A lightweight YAML Parser for Python";
18     license = licenses.mit;
19   };