My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/visitor/default.nix

18 lines
437 B

{ 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; [ ];
};
}