pythonPackages.visitor: init at 0.1.3
This commit is contained in:
parent
b2b9e68d1c
commit
28d7d7c2ca
2 changed files with 20 additions and 0 deletions
18
pkgs/development/python-modules/visitor/default.nix
Normal file
18
pkgs/development/python-modules/visitor/default.nix
Normal 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; [ ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue