pythonPackages.poyo: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-16 10:40:22 -04:00
committed by Frederik Rietdijk
parent d40edcb911
commit 2d5c53ce49
2 changed files with 22 additions and 15 deletions

View File

@@ -0,0 +1,21 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
version = "0.4.0";
pname = "poyo";
src = fetchPypi {
inherit pname version;
sha256 = "1f48ffl0j1f2lmgabajps7v8w90ppxbp5168gh8kh27bjd8xk5ca";
};
meta = with stdenv.lib; {
homepage = https://github.com/hackebrot/poyo;
description = "A lightweight YAML Parser for Python";
license = licenses.mit;
};
}