pythonPackages.poyo: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
d40edcb911
commit
2d5c53ce49
21
pkgs/development/python-modules/poyo/default.nix
Normal file
21
pkgs/development/python-modules/poyo/default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user