pythonPackages.visitor: init at 0.1.3

This commit is contained in:
Silvan Mosberger 2018-08-14 19:34:04 +02:00
parent b2b9e68d1c
commit 28d7d7c2ca
No known key found for this signature in database
GPG key ID: 9424360B4B85C9E7
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "visitor";
version = "0.1.3";
src = fetchPypi {
inherit pname version;
sha256 = "02j87v93c50gz68gbgclmbqjcwcr7g7zgvk7c6y4x1mnn81pjwrc";
};
meta = with lib; {
homepage = https://github.com/mbr/visitor;
description = "A tiny pythonic visitor implementation";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}

View file

@ -17303,6 +17303,8 @@ EOF
vine = callPackage ../development/python-modules/vine { };
visitor = callPackage ../development/python-modules/visitor { };
whitenoise = callPackage ../development/python-modules/whitenoise { };
XlsxWriter = callPackage ../development/python-modules/XlsxWriter { };